Skip to content

Commit

Permalink
Per #2168, inital hooks for adding tc_diag.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Sep 26, 2022
1 parent b7b5361 commit 2eafc49
Show file tree
Hide file tree
Showing 9 changed files with 1,282 additions and 1 deletion.
1 change: 1 addition & 0 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ sub-directory, or the MET Online Tutorial:
- series_analysis
- shift_data_plane
- stat_analysis
- tc_diag
- tc_dland
- tc_gen
- tc_pairs
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,8 @@ AC_CONFIG_FILES([Makefile
src/tools/tc_utils/tc_stat/Makefile
src/tools/tc_utils/tc_gen/Makefile
src/tools/tc_utils/rmw_analysis/Makefile
src/tools/tc_utils/tc_rmw/Makefile])
src/tools/tc_utils/tc_rmw/Makefile
src/tools/tc_utils/tc_diag/Makefile])

if test -n "$MET_DEVELOPMENT"; then
AC_CONFIG_FILES([src/tools/dev_utils/Makefile
Expand Down
1 change: 1 addition & 0 deletions src/tools/tc_utils/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ SUBDIRS = tc_dland \
tc_gen \
tc_rmw \
rmw_analysis \
tc_diag \
tc_stat

MAINTAINERCLEANFILES = Makefile.in
6 changes: 6 additions & 0 deletions src/tools/tc_utils/tc_diag/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
tc_diag
*.o
*.a
.deps
Makefile
*.dSYM
46 changes: 46 additions & 0 deletions src/tools/tc_utils/tc_diag/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
## @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

# The program

bin_PROGRAMS = tc_diag
tc_diag_SOURCES = tc_diag.cc \
tc_diag_conf_info.cc
tc_diag_CPPFLAGS = ${MET_CPPFLAGS}
tc_diag_LDFLAGS = ${MET_LDFLAGS}
tc_diag_LDADD = -lvx_stat_out \
-lvx_statistics \
-lvx_analysis_util \
-lvx_series_data \
-lvx_tc_util \
-lvx_data2d_factory \
-lvx_data2d_nc_met \
-lvx_data2d_grib $(GRIB2_LIBS) \
-lvx_data2d_nc_pinterp \
$(PYTHON_LIBS) \
-lvx_data2d_nccf \
-lvx_statistics \
-lvx_data2d \
-lvx_nc_util \
-lvx_regrid \
-lvx_grid \
-lvx_config \
-lvx_gsl_prob \
-lvx_cal \
-lvx_util_math \
-lvx_util \
-lvx_math \
-lvx_color \
-lvx_log \
-lm -lnetcdf_c++4 -lnetcdf -lgsl -lgslcblas \
$(FLIBS)

EXTRA_DIST = tc_diag_conf_info.h \
tc_diag.h
Loading

0 comments on commit 2eafc49

Please sign in to comment.