netcdf-c/libsrc4/Makefile.am

19 lines
535 B
Makefile
Raw Normal View History

2018-12-07 05:56:42 +08:00
# This is part of Unidata's netCDF package. Copyright 2005-2018, see
# the COPYRIGHT file for more information.
2010-06-03 21:24:43 +08:00
# This automake file generates the Makefile to build netCDF-4.
2017-12-05 03:21:14 +08:00
# Ed Hartnett
2010-06-03 21:24:43 +08:00
include $(top_srcdir)/lib_flags.am
2010-06-03 21:24:43 +08:00
libnetcdf4_la_CPPFLAGS = ${AM_CPPFLAGS}
2010-06-03 21:24:43 +08:00
# This is our output. The netCDF-4 convenience library.
noinst_LTLIBRARIES = libnetcdf4.la
2018-05-09 01:58:01 +08:00
libnetcdf4_la_SOURCES = nc4dispatch.c nc4attr.c nc4dim.c nc4grp.c \
nc4internal.c nc4type.c nc4var.c ncfunc.c error4.c nc4printer.c \
2018-07-19 21:26:27 +08:00
ncindex.c
Add support for multiple filters per variable. 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.
2020-02-17 03:59:33 +08:00
2017-12-05 03:21:14 +08:00
EXTRA_DIST = CMakeLists.txt