mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
7e27052f87
The in-memory files can be made persistent if nc_create is called with NC_DISKLESS|NC_WRITE flags set. Initial test case also included. - Modified ncio mechanism to support multiple ncio packages; this is so we can have posixio and memio operating at the same time. - cleanup up a bunch of lint issues (unused variables, etc).
21 lines
585 B
Makefile
21 lines
585 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.
|
|
|
|
include_HEADERS = netcdf.h
|
|
|
|
if BUILD_PARALLEL
|
|
include_HEADERS += netcdf_par.h
|
|
endif
|
|
|
|
noinst_HEADERS = nc_logging.h nc_tests.h fbits.h nc.h \
|
|
nclist.h nc_uri.h utf8proc.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 nc3dispatch.h
|
|
|
|
if USE_NETCDF4
|
|
noinst_HEADERS += ncaux.h
|
|
endif
|