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.
- Loading branch information
1 parent
a936f8f
commit ba3e0d6
Showing
5 changed files
with
79 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,23 @@ | ||
# This is part of PIO. It creates the Makefile for the GPTL directory. | ||
|
||
# Ed Hartnett 4/9/19 | ||
|
||
# Turn off parallel builds in this directory. | ||
.NOTPARALLEL: | ||
|
||
# Build these uninstalled convenience libraries. | ||
noinst_LTLIBRARIES = libperf_utils.la libperf_mod.la | ||
|
||
# The convenience libraries depends on their source. | ||
libperf_utils_la_SOURCES = perf_utils.F90 | ||
libperf_mod_la_SOURCES = perf_mod.F90 | ||
|
||
# Each mod file depends on the .o file. | ||
perf_utils.mod: perf_utils.$(OBJEXT) | ||
perf_mod.mod: perf_mod.$(OBJEXT) | ||
|
||
# Does the user want to build fortran? | ||
#if BUILD_FORTRAN | ||
#endif | ||
|
||
EXTRA_DIST = CMakeLists.txt |
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 Fortran performance | ||
## tests for the PIO library. | ||
|
||
# Ed Hartnett 4/6/19 | ||
|
||
# Parallel builds don't currently work in this directory. | ||
.NOTPARALLEL: | ||
|
||
# Put together AM_CPPFLAGS and AM_LDFLAGS. | ||
include $(top_srcdir)/set_flags.am | ||
|
||
LDADD = libpio_tutil.la \ | ||
${top_builddir}/src/flib/libpiof.la \ | ||
${top_builddir}/src/clib/libpio.la | ||
|
||
# Build the test for make check. | ||
bin_PROGRAMS = pioperformance | ||
|
||
pioperformance_SOURCES = pioperformance.F90 | ||
|
||
# Tests will run from a bash script. | ||
#TESTS = run_tests.sh | ||
|
||
EXTRA_DIST = CMakeLists.txt gensimple.pl | ||
|
||
# Clean up files produced during testing. | ||
CLEANFILES = *.nc *.log *.mod |