mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
44d0dcaad2
re: https://github.com/Unidata/netcdf-c/issues/1584 Support has been added for multiple filters per variable. This affects a number of components in netcdf. The new APIs are documented in NUG/filters.md. The primary changes are: * A set of new functions are provided (see __include/netcdf_filter.h__). - Obtain a list of the filters associated with a variable - Obtain the parameters for a specific filter. * The existing __nc_inq_var_filter__ function now returns info about the first defined filter. * The utilities (ncgen, ncdump, and nccopy) now support an extended format for specifying a sequence of filters. The general form is __<filter>|<filter>..._. * The ncdump **_Filter** attribute now dumps a list of all the filters associated with a variable using the above new format. * Filter specifications can now use a filter name instead of number for filters known to the netcdf library, which in turn is taken from the HDF5 filter registration page. * New errors are defined: NC_EFILTER and NC_ENOFILTER. The latter is returned if an attempt is made to access an unknown filter. * Internally, the dispatch table has been extended to add a function to handle all of the filter functions. * New, filter-related, tests were added to nc_test4. * A new plugin was added to the plugins directory to help with testing. Notes: 1. The shuffle and fletcher32 filters are not part of the multifilter system. Misc. changes: 1. A debug module was added to libhdf5 to help catch error locations.
196 lines
6.1 KiB
Makefile
196 lines
6.1 KiB
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2005-2018, see the COPYRIGHT file for more information.
|
|
|
|
# This is the main automake file for netCDF. It builds the different
|
|
# netcdf directories. Not all directories are built, depending on the
|
|
# options selected during configure.
|
|
|
|
# Ed Hartnett, Ward Fisher
|
|
|
|
# This directory stores libtool macros, put there by aclocal.
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
# These files get added to the distribution.
|
|
EXTRA_DIST = README.md COPYRIGHT INSTALL.md test_prog.c lib_flags.am \
|
|
cmake CMakeLists.txt COMPILE.cmake.txt config.h.cmake.in \
|
|
cmake_uninstall.cmake.in FixBundle.cmake.in nc-config.cmake.in \
|
|
RELEASE_NOTES.md CTestCustom.cmake CTestConfig.cmake.in \
|
|
libnetcdf.settings.in netCDFConfig.cmake.in CMakeInstallation.cmake \
|
|
test-driver-verbose test_common.in
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = netcdf.pc
|
|
|
|
# Does the user want to build and run unit tests?
|
|
if BUILD_UNIT_TESTS
|
|
UNIT_TEST = unit_test
|
|
endif # BUILD_UNIT_TESTS
|
|
|
|
# Does the user want to build the V2 API?
|
|
if BUILD_V2
|
|
V2_TEST = nctest
|
|
endif
|
|
|
|
# Does the user want to build ncgen/ncdump?
|
|
if BUILD_UTILITIES
|
|
NCGEN3 = ncgen3
|
|
NCGEN = ncgen
|
|
NCDUMP = ncdump
|
|
endif
|
|
|
|
# Does the user want to build the examples?
|
|
if BUILD_EXAMPLES
|
|
EXAMPLES = examples
|
|
endif
|
|
|
|
# Is the user building netCDF-4?
|
|
if USE_NETCDF4
|
|
LIBSRC4_DIR = libsrc4
|
|
endif
|
|
|
|
# Is the user building with HDF5?
|
|
# Note that USE_HDF5 does not imply USE_NETCDF4
|
|
if USE_HDF5
|
|
H5_TEST_DIR = h5_test
|
|
LIBHDF5 = libhdf5
|
|
if USE_NETCDF4
|
|
NC_TEST4 = nc_test4
|
|
endif
|
|
endif
|
|
|
|
# Build the dap2 client
|
|
if ENABLE_DAP
|
|
OCLIB = oc2
|
|
DAP2 = libdap2
|
|
NCDAP2TESTDIR = ncdap_test
|
|
endif
|
|
|
|
if ENABLE_DAP4
|
|
DAP4 = libdap4
|
|
NCDAP4TESTDIR = dap4_test
|
|
endif #DAP4
|
|
|
|
# Build PnetCDF
|
|
if USE_PNETCDF
|
|
LIBSRCP = libsrcp
|
|
endif
|
|
|
|
# Build HDF4 if desired.
|
|
if USE_HDF4
|
|
HDF4_TEST_DIR = hdf4_test
|
|
LIBHDF4 = libhdf4
|
|
endif
|
|
|
|
# Optionally build plugins
|
|
if ENABLE_FILTER_TESTING
|
|
PLUGIN_DIR = plugins
|
|
endif
|
|
|
|
# If benchmarks were turned on, build and run a bunch more tests.
|
|
if BUILD_BENCHMARKS
|
|
BENCHMARKS_DIR = nc_perf
|
|
endif # BUILD_BENCHMARKS
|
|
|
|
# Define Test directories
|
|
if BUILD_TESTSETS
|
|
TESTDIRS = $(UNIT_TEST) $(V2_TEST) nc_test $(NC_TEST4) \
|
|
$(BENCHMARKS_DIR) $(HDF4_TEST_DIR) $(NCDAP2TESTDIR) $(NCDAP4TESTDIR)
|
|
endif
|
|
|
|
# This is the list of subdirs for which Makefiles will be constructed
|
|
# and run. ncgen must come before ncdump, because their tests
|
|
# depend on it.
|
|
SUBDIRS = include $(H5_TEST_DIR) libdispatch libsrc $(LIBSRC4_DIR) \
|
|
$(LIBSRCP) $(LIBHDF4) $(LIBHDF5) $(OCLIB) $(DAP2) ${DAP4} liblib \
|
|
$(NCGEN3) $(NCGEN) $(NCDUMP) ${PLUGIN_DIR} $(TESTDIRS) docs \
|
|
$(EXAMPLES)
|
|
|
|
# Remove these generated files, for a distclean.
|
|
DISTCLEANFILES = VERSION comps.txt test_prog libnetcdf.settings \
|
|
test_common.sh
|
|
|
|
# The nc-config script helps the user build programs with netCDF.
|
|
bin_SCRIPTS = nc-config
|
|
|
|
# install libnetcdf.settings in lib directory.
|
|
settingsdir = $(libdir)
|
|
settings_DATA = libnetcdf.settings
|
|
|
|
####
|
|
# Provide an entry to rebuild all the m4 generated files
|
|
# List of files to create: WARNING leave off the extension
|
|
####
|
|
|
|
MM4= ./nc_test/test_put ./nc_test/test_get ./nc_test/test_write \
|
|
./nc_test/test_read ./libsrc/netcdf ./libsrc/putget ./libsrc/ncx \
|
|
./libsrc/t_ncxx ./libsrc/attr
|
|
|
|
mm4::
|
|
for m in ${MM4} ; do \
|
|
b=`basename $$m` ; d=`dirname $$m`;\
|
|
pushd $$d; m4 -s $${b}.m4 > $${b}.c ; popd; done
|
|
|
|
#####
|
|
# If ENABLE_FORTRAN was turned on,
|
|
# we have new make targets, build-netcdf-fortran and
|
|
# install-netcdf-fortran.
|
|
#####
|
|
|
|
###
|
|
# build-netcdf-fortran
|
|
###
|
|
if BUILD_FORTRAN
|
|
|
|
build-netcdf-fortran:
|
|
echo "Downloading and Building NetCDF-Fortran"
|
|
chmod u+x $(abs_top_builddir)/postinstall.sh
|
|
sh -c "$(abs_top_builddir)/postinstall.sh -t autotools -a build"
|
|
|
|
###
|
|
# install-netcdf-fortran
|
|
###
|
|
install-netcdf-fortran:
|
|
echo "Installing NetCDF-Fortran"
|
|
chmod u+x $(abs_top_builddir)/postinstall.sh
|
|
sh -c "$(abs_top_builddir)/postinstall.sh -t autotools -a install"
|
|
|
|
endif
|
|
|
|
check_nc_config:
|
|
$(CC) `./nc-config --cflags` test_prog.c -o test_prog `./nc-config --libs`
|
|
./test_prog
|
|
|
|
install-data-hook:
|
|
|
|
@echo ''
|
|
@echo '+-------------------------------------------------------------+'
|
|
@echo '| Congratulations! You have successfully installed netCDF! |'
|
|
@echo '| |'
|
|
@echo '| You can use script "nc-config" to find out the relevant |'
|
|
@echo '| compiler options to build your application. Enter |'
|
|
@echo '| |'
|
|
@echo '| nc-config --help |'
|
|
@echo '| |'
|
|
@echo '| for additional information. |'
|
|
@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 '| NetCDF is tested nightly on many platforms at Unidata |'
|
|
@echo '| but your platform is probably different in some ways. |'
|
|
@echo '| |'
|
|
@echo '| If any tests fail, please see the netCDF web site: |'
|
|
@echo '| http://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 '| http://www.unidata.ucar.edu |'
|
|
@echo '+-------------------------------------------------------------+'
|
|
@echo ''
|