2011-09-23 02:25:31 +08:00
|
|
|
# This is the main automake file for the netCDF CXX4 C++ library.
|
|
|
|
|
2011-09-23 19:49:34 +08:00
|
|
|
# Directory for autotools to put scripts during build.
|
2011-09-23 02:25:31 +08:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2011-08-18 02:56:14 +08:00
|
|
|
|
2011-09-23 19:49:34 +08:00
|
|
|
# Pkgconfig is some data about how the package was built.
|
|
|
|
pkgconfigdir=$(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = netcdf-cxx4.pc
|
|
|
|
|
2011-09-23 02:25:31 +08:00
|
|
|
# The nc-config script helps the user build programs with netCDF.
|
|
|
|
bin_SCRIPTS = ncxx4-config
|
|
|
|
|
|
|
|
# Build and test in these directories.
|
2016-01-26 07:13:30 +08:00
|
|
|
SUBDIRS = cxx4 examples docs
|
2011-08-18 02:56:14 +08:00
|
|
|
|
2019-09-07 07:14:56 +08:00
|
|
|
if ENABLE_FILTER_TESTING
|
|
|
|
SUBDIRS += plugins
|
|
|
|
endif
|
|
|
|
|
2019-09-10 04:30:28 +08:00
|
|
|
# These files get added to the distribution.
|
|
|
|
EXTRA_DIST = CMakeLists.txt README.md CTestCustom.cmake \
|
|
|
|
cxx4/CMakeLists.txt docs/CMakeLists.txt \
|
|
|
|
examples/CMakeLists.txt plugins/CMakeLists.txt test_common.in \
|
|
|
|
ncxx4-config.in netcdf-cxx4.pc.in RELEASE_NOTES.md \
|
|
|
|
ncxx4-config.cmake.in libnetcdf-cxx.settings.in \
|
|
|
|
CMakeInstallation.cmake COPYRIGHT cmake_uninstall.cmake.in \
|
|
|
|
CTestConfig.cmake.in
|
|
|
|
|
2011-08-18 02:56:14 +08:00
|
|
|
# Remove these generated files, for a distclean.
|
|
|
|
DISTCLEANFILES = VERSION
|
|
|
|
|
|
|
|
install-data-hook:
|
|
|
|
@echo ''
|
|
|
|
@echo '+-------------------------------------------------------------+'
|
|
|
|
@echo '| Congratulations! You have successfully installed the |'
|
2015-08-04 00:34:38 +08:00
|
|
|
@echo '| new netCDF-4 C++ Library |'
|
2011-08-18 02:56:14 +08:00
|
|
|
@echo '| |'
|
|
|
|
@echo '| CAUTION: |'
|
|
|
|
@echo '| |'
|
|
|
|
@echo '| If you have not already run "make check", then we strongly |'
|
|
|
|
@echo '| recommend you do so. It does not take very long. |'
|
|
|
|
@echo '| |'
|
|
|
|
@echo '| Before using netCDF to store important data, test your |'
|
|
|
|
@echo '| build with "make check". |'
|
|
|
|
@echo '| |'
|
|
|
|
@echo '| If any tests fail, please see the netCDF web site: |'
|
2021-11-10 07:20:52 +08:00
|
|
|
@echo '| https://www.unidata.ucar.edu/software/netcdf/ |'
|
2011-08-18 02:56:14 +08:00
|
|
|
@echo '| |'
|
|
|
|
@echo '| NetCDF is developed and maintained at the Unidata Program |'
|
2016-01-26 07:13:30 +08:00
|
|
|
@echo '| Center. Unidata provides a broad array of data and software |'
|
2011-08-18 02:56:14 +08:00
|
|
|
@echo '| tools for use in geoscience education and research. |'
|
2021-11-10 07:20:52 +08:00
|
|
|
@echo '| https://www.unidata.ucar.edu |'
|
2011-08-18 02:56:14 +08:00
|
|
|
@echo '+-------------------------------------------------------------+'
|
|
|
|
@echo ''
|