netcdf-cxx4/Makefile.am
Jennifer Oxelson 8c80524fa6 docs migration
2021-11-09 16:20:52 -07:00

55 lines
2.4 KiB
Makefile

# This is the main automake file for the netCDF CXX4 C++ library.
# Directory for autotools to put scripts during build.
ACLOCAL_AMFLAGS = -I m4
# Pkgconfig is some data about how the package was built.
pkgconfigdir=$(libdir)/pkgconfig
pkgconfig_DATA = netcdf-cxx4.pc
# The nc-config script helps the user build programs with netCDF.
bin_SCRIPTS = ncxx4-config
# Build and test in these directories.
SUBDIRS = cxx4 examples docs
if ENABLE_FILTER_TESTING
SUBDIRS += plugins
endif
# 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
# Remove these generated files, for a distclean.
DISTCLEANFILES = VERSION
install-data-hook:
@echo ''
@echo '+-------------------------------------------------------------+'
@echo '| Congratulations! You have successfully installed the |'
@echo '| new netCDF-4 C++ Library |'
@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: |'
@echo '| https://www.unidata.ucar.edu/software/netcdf/ |'
@echo '| |'
@echo '| NetCDF is developed and maintained at the Unidata Program |'
@echo '| Center. Unidata provides a broad array of data and software |'
@echo '| tools for use in geoscience education and research. |'
@echo '| https://www.unidata.ucar.edu |'
@echo '+-------------------------------------------------------------+'
@echo ''