forked from CESM-Development/cime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
now run examples from autotools build as well
- Loading branch information
1 parent
efd9b10
commit 3e80380
Showing
13 changed files
with
748 additions
and
286 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,6 @@ | ||
# This is part of PIO. It creates the examples Makefile. | ||
|
||
# Ed Hartnett | ||
|
||
SUBDIRS = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## This is the automake file for building the C examples for the PIO | ||
## library. | ||
|
||
# Ed Hartnett 5/7/18 | ||
|
||
# Link to our assembled library. | ||
AM_LDFLAGS = ${top_builddir}/src/clib/libpio.la | ||
AM_CPPFLAGS = -I$(top_srcdir)/src/clib | ||
|
||
# Build the tests for make check. | ||
check_PROGRAMS = example1 examplePio darray_no_async | ||
|
||
# Tests will run from a bash script. | ||
TESTS = run_tests.sh | ||
|
||
# Distribute the test script. | ||
EXTRA_DIST = run_tests.sh | ||
|
||
# Clean up files produced during testing. | ||
CLEANFILES = *.nc *.log |
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
Oops, something went wrong.