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.
adding directories and Makefile.am changes to support fortran netcdf …
…integration
- Loading branch information
1 parent
08e7b2b
commit ed9f6c5
Showing
5 changed files
with
50 additions
and
3 deletions.
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,12 @@ | ||
## This is the automake file to build the PIO netCDF integration | ||
## layer for the PIO fortran library. | ||
# Ed Hartnett 7/7/19 | ||
|
||
# Find pio.h. | ||
AM_CPPFLAGS = -I$(top_srcdir)/src/clib | ||
|
||
# This is our output. The ncint convenience library. | ||
#noinst_LTLIBRARIES = libfncint.la | ||
|
||
# The source files. | ||
#libfncint_la_SOURCES = ncintdispatch.c ncintdispatch.h ncint_pio.c |
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,27 @@ | ||
## This is the automake file for building the netCDF integration layer | ||
## tests. | ||
|
||
# Ed Hartnett 7/3/19 | ||
|
||
# Put together AM_CPPFLAGS and AM_LDFLAGS. | ||
AM_CPPFLAGS = -I$(top_srcdir)/src/clib | ||
LDADD = ${top_builddir}/src/clib/libpioc.la | ||
|
||
# Build the test for make check. | ||
#check_PROGRAMS = tst_pio_udf | ||
|
||
#if RUN_TESTS | ||
# Tests will run from a bash script. | ||
#TESTS = run_tests.sh | ||
#endif # RUN_TESTS | ||
|
||
# if RUN_TESTS | ||
# # Tests will run from a bash script. | ||
# TESTS = run_tests.sh | ||
# endif # RUN_TESTS | ||
|
||
# Distribute the test script. | ||
#EXTRA_DIST = run_tests.sh | ||
|
||
# Clean up files produced during testing. | ||
#CLEANFILES = *.nc *.log |