mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
5ca78309cc
contain as little file-type specific info as possible. It modifies especially libsrc so that all of the netcdf-3 data that used to be in struct NC is now kept in a separate chunk of data pointed to by the struct NC. This makes all of current protocols consistent: netcdf-3, netcdf-4, and dap.
21 lines
598 B
Makefile
21 lines
598 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 ncuri.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 nc3internal.h
|
|
|
|
if USE_NETCDF4
|
|
noinst_HEADERS += ncaux.h
|
|
endif
|