-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Per #2776, delete stale prob_pair_info.h/.cc, wwmca_utils.h/.cc, and rmw_analysis_utils.h/.cc files that were not being compiled by their Makefiles. * Per #2776, update Makefile to compile the test_read_rmw utility. * Per #2776, add Makefile for the vx_python3_utils test utility directory. * add rpath for atlas and eckit lib dirs so dynamic libraries can be found when running on seneca * only set -L and -I arguments for atlas and eckit if the appropriate environment variable is set -- this matches how it is handled for other external library dependencies * Per #2776, just whitespace and capitalization --------- Co-authored-by: George McCabe <23407799+georgemccabe@users.noreply.github.com>
- Loading branch information
1 parent
9e2825c
commit 7615f67
Showing
20 changed files
with
876 additions
and
604 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
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
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,7 @@ | ||
test_get | ||
test_numpy | ||
*.o | ||
*.a | ||
.deps | ||
Makefile | ||
*.dSYM |
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,37 @@ | ||
## @start 1 | ||
## Makefile.am -- Process this file with automake to produce Makefile.in | ||
## @end 1 | ||
|
||
MAINTAINERCLEANFILES = Makefile.in | ||
|
||
# Include the project definitions | ||
|
||
include ${top_srcdir}/Make-include | ||
|
||
# Test programs | ||
|
||
noinst_PROGRAMS = test_get \ | ||
test_numpy | ||
|
||
test_get_SOURCES = test_get.cc | ||
test_get_CPPFLAGS = ${MET_CPPFLAGS} | ||
test_get_LDFLAGS = -L. ${MET_LDFLAGS} | ||
test_get_LDADD = \ | ||
-lvx_python3_utils \ | ||
-lvx_util \ | ||
-lvx_math \ | ||
-lvx_cal \ | ||
-lvx_log \ | ||
$(PYTHON_DEP_LIBS) | ||
|
||
test_numpy_SOURCES = test_numpy.cc | ||
test_numpy_CPPFLAGS = ${MET_CPPFLAGS} | ||
test_numpy_LDFLAGS = -L. ${MET_LDFLAGS} | ||
test_numpy_LDADD = \ | ||
-lvx_python3_utils \ | ||
-lvx_util \ | ||
-lvx_math \ | ||
-lvx_cal \ | ||
-lvx_log \ | ||
$(PYTHON_DEP_LIBS) | ||
|
Oops, something went wrong.