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.
added Makefile.am in tests/general which does noting
- Loading branch information
1 parent
f798cd2
commit 3a34128
Showing
3 changed files
with
39 additions
and
2 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,34 @@ | ||
## This is the automake file for building the Fortran general tests | ||
## for the PIO library. | ||
|
||
# Ed Hartnett 3/22/19 | ||
|
||
# Link to our assembled library. | ||
AM_LDFLAGS = ${top_builddir}/src/clib/libpio.la | ||
AM_CPPFLAGS = -I$(top_srcdir)/src/flib | ||
AM_CPPFLAGS += "-D_NETCDF -D_NETCDF4 -D_PETCDF" | ||
LDADD = ${top_builddir}/src/clib/libpiof.la | ||
|
||
# # Build the test for make check. | ||
# check_PROGRAMS = pio_unit_test_driver | ||
# pio_unit_test_driver_SOURCES = driver.F90 | ||
# pio_unit_test_driver_LDADD = libglobal_vars.la libncdf_tests.la \ | ||
# libbasic_tests.la ${top_builddir}/src/flib/libpiof.la ${top_builddir}/src/clib/libpio.la | ||
|
||
# # Build these uninstalled convenience libraries. | ||
# noinst_LTLIBRARIES = libglobal_vars.la libncdf_tests.la \ | ||
# libbasic_tests.la | ||
|
||
# # The convenience libraries depends on their source. | ||
# libglobal_vars_la_SOURCES = global_vars.F90 | ||
# libncdf_tests_la_SOURCES = ncdf_tests.F90 | ||
# libbasic_tests_la_SOURCES = basic_tests.F90 | ||
|
||
# # Tests will run from a bash script. | ||
# #TESTS = run_tests.sh | ||
|
||
# Distribute the test script. | ||
EXTRA_DIST = CMakeLists.txt #run_tests.sh | ||
|
||
# Clean up files produced during testing. | ||
CLEANFILES = *.nc *.log |