mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
3c7ffcc6d1
Fix https://github.com/Unidata/netcdf-c/issues/962 1. remove the --disable-diskless option since it is no longer needed. Similarly for CMakeLists.txt. 2. Fixed nc4files.c where BAIL and return were mixed leading to situation where cleanup code was not being invoked. This probably occurs elsewhere, but I did not find any specifically.
33 lines
934 B
Makefile
33 lines
934 B
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2010, see the COPYRIGHT file for more information.
|
|
|
|
# This automake file generates the Makefile to build the include
|
|
# directory.
|
|
|
|
# Ed Hartnett, Dennis Heimbigner, Ward Fisher
|
|
|
|
include_HEADERS = netcdf.h netcdf_meta.h
|
|
|
|
if BUILD_PARALLEL
|
|
include_HEADERS += netcdf_par.h
|
|
endif
|
|
|
|
include_HEADERS += netcdf_mem.h
|
|
|
|
noinst_HEADERS = nc_logging.h nc_tests.h fbits.h nc.h nclist.h \
|
|
ncuri.h ncutf8.h ncdispatch.h ncdimscale.h netcdf_f.h err_macros.h \
|
|
ncbytes.h nchashmap.h ceconstraints.h rnd.h nclog.h ncconfigure.h \
|
|
nc4internal.h nctime.h nc3internal.h onstack.h ncrc.h \
|
|
ncauth.h ncoffsets.h nctestserver.h nc4dispatch.h nc3dispatch.h \
|
|
ncexternl.h ncwinpath.h ncfilter.h ncindex.h hdf4dispatch.h
|
|
|
|
if USE_DAP
|
|
noinst_HEADERS += ncdap.h
|
|
endif
|
|
|
|
if USE_NETCDF4
|
|
noinst_HEADERS += ncaux.h
|
|
endif
|
|
|
|
EXTRA_DIST = CMakeLists.txt XGetopt.h netcdf_meta.h.in
|