mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# This is part of the netCDF package.
|
|
# Copyright 2005 University Corporation for Atmospheric Research/Unidata
|
|
# See COPYRIGHT file for conditions of use.
|
|
#
|
|
# Assemble the CPPFLAGS and LDFLAGS that point to all the needed
|
|
# libraries for netCDF-4.
|
|
#
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
AM_LDFLAGS =
|
|
|
|
# If the user specified a root location for HDF5, use it.
|
|
if USE_HDF5_DIR
|
|
AM_CPPFLAGS += -I@HDF5DIR@/include
|
|
AM_LDFLAGS += -L@HDF5DIR@/lib
|
|
endif
|
|
|
|
# If the user specified a root location for ZLIB, use it.
|
|
if USE_ZLIB_DIR
|
|
AM_CPPFLAGS += -I@ZLIBDIR@/include
|
|
AM_LDFLAGS += -L@ZLIBDIR@/lib
|
|
endif
|
|
|
|
# If the user specified a root location for SZLIB, use it.
|
|
if USE_SZLIB_DIR
|
|
AM_CPPFLAGS += -I@SZLIBDIR@/include
|
|
AM_LDFLAGS += -L@SZLIBDIR@/lib
|
|
endif
|
|
|
|
# If the user specified a root location for pnetcdf, use it.
|
|
if USE_PNETCDF_DIR
|
|
AM_CPPFLAGS += -I@PNETCDFDIR@/include
|
|
AM_LDFLAGS += -L@PNETCDFDIR@/lib
|
|
endif
|
|
|
|
# If the user specified a root location for HDF4, use it.
|
|
if USE_HDF4_DIR
|
|
AM_CPPFLAGS += -I@HDF4DIR@/include
|
|
AM_LDFLAGS += -L@HDF4DIR@/lib
|
|
endif
|
|
|
|
if USE_DAP
|
|
AM_CPPFLAGS += -I${top_srcdir}/oc
|
|
endif
|