forked from ESMCI/cime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcc8bd4
commit badb9e2
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## This is the automake file to build the PIO Fortran library. | ||
# Ed Hartnett 3/19/19 | ||
|
||
# The library we are building. | ||
#lib_LTLIBRARIES = libpiof.la | ||
|
||
# These linker flags specify libtool version info. | ||
# See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning | ||
# for information regarding incrementing `-version-info`. | ||
#libpiof_la_LDFLAGS = -version-info 1:0:0 | ||
|
||
# The library soure files. | ||
#libpiof_la_SOURCES = pio.F90 | ||
|
||
# Build this uninstalled convenience library. | ||
noinst_LTLIBRARIES = libpio_kinds.la | ||
|
||
# The convenience library depends on its source. | ||
libpio_kinds_la_SOURCES = pio_kinds.F90 | ||
|
||
# Mod file depends on its o file, is built and then installed. | ||
pio_kinds.mod: pio_kinds.$(OBJEXT) | ||
BUILT_SOURCES = pio_kinds.mod | ||
include_HEADERS = pio_kinds.mod | ||
|
||
CLEANFILES = *.mod |