mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
6d8809100f
1. When running under windows (as opposed to cygwin) we need to make sure to not user /cygdrive/ file paths. This was ocurring in libdap4/d4read.c, but may occur elsewhere. 2. Shell scripts in the git repo are not being checked-out with the executable mode set. Had core.filemode set to false. Was a major hassle to fix.
33 lines
850 B
Makefile
33 lines
850 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 netcdf_meta.h
|
|
|
|
if BUILD_PARALLEL
|
|
include_HEADERS += netcdf_par.h
|
|
endif
|
|
|
|
if BUILD_DISKLESS
|
|
include_HEADERS += netcdf_mem.h
|
|
endif
|
|
|
|
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 nc_hashmap.h ncrc.h ncoffsets.h nctestserver.h \
|
|
nc4dispatch.h nc3dispatch.h ncexternl.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
|