2011-05-31 23:03:31 +08:00
|
|
|
# This is part of Unidata's netCDF package. Copyright 2005-2011, see
|
|
|
|
# the COPYRIGHT file for more information.
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2011-05-31 23:03:31 +08:00
|
|
|
# This automake file generates the Makefile to build netCDF-4.
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2011-03-15 18:19:08 +08:00
|
|
|
include $(top_srcdir)/lib_flags.am
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2011-03-15 18:19:08 +08:00
|
|
|
libnetcdf4_la_CPPFLAGS = ${AM_CPPFLAGS}
|
2010-06-03 21:24:43 +08:00
|
|
|
|
2011-03-15 18:19:08 +08:00
|
|
|
# This turns on declspec magic in netcdf.h for windows DLLs.
|
|
|
|
if BUILD_DLL
|
|
|
|
libnetcdf4_la_CPPFLAGS += -DDLL_EXPORT
|
2010-06-03 21:24:43 +08:00
|
|
|
endif
|
|
|
|
|
2011-05-31 23:03:31 +08:00
|
|
|
# This is our output. The netCDF-4 convenience library.
|
|
|
|
noinst_LTLIBRARIES = libnetcdf4.la
|
2011-08-17 05:04:33 +08:00
|
|
|
libnetcdf4_la_SOURCES = nc4dispatch.c nc4dispatch.h nc4attr.c nc4dim.c \
|
2016-08-08 23:24:19 +08:00
|
|
|
nc4file.c nc4grp.c nc4hdf.c nc4internal.c nc4type.c nc4var.c ncfunc.c error4.c \
|
|
|
|
nc4info.c
|
2011-05-31 23:03:31 +08:00
|
|
|
|
2013-02-21 07:28:28 +08:00
|
|
|
EXTRA_DIST=CMakeLists.txt
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
|
2011-03-15 18:19:08 +08:00
|
|
|
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
|