2017-03-09 08:01:10 +08:00
|
|
|
## This is a automake file, part of Unidata's netCDF package.
|
2018-12-07 05:24:28 +08:00
|
|
|
# Copyright 2008, see the COPYRIGHT file for more information.
|
2017-03-09 08:01:10 +08:00
|
|
|
|
|
|
|
# This automake file generates the Makefile to libdap2. Whatever that
|
|
|
|
# is!
|
|
|
|
|
|
|
|
# Put together AM_CPPFLAGS and AM_LDFLAGS.
|
|
|
|
include $(top_srcdir)/lib_flags.am
|
2021-11-02 12:37:05 +08:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/libncxml
|
|
|
|
libdap4_la_CPPFLAGS = ${AM_CPPFLAGS}
|
2017-03-09 08:01:10 +08:00
|
|
|
|
|
|
|
# We may have to add to these later.
|
|
|
|
DISTCLEANFILES =
|
|
|
|
MAINTAINERCLEANFILES =
|
|
|
|
CLEANFILES =
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|
|
|
|
|
|
|
|
LDADD=
|
|
|
|
|
2018-08-27 07:04:46 +08:00
|
|
|
#d4curlflags.c
|
|
|
|
|
2017-03-09 08:01:10 +08:00
|
|
|
SRC= \
|
|
|
|
d4curlfunctions.c \
|
|
|
|
d4fix.c \
|
|
|
|
d4data.c \
|
|
|
|
d4file.c \
|
|
|
|
d4parser.c \
|
|
|
|
d4meta.c \
|
|
|
|
d4varx.c \
|
|
|
|
d4dump.c \
|
|
|
|
d4swap.c \
|
|
|
|
d4chunk.c \
|
|
|
|
d4printer.c \
|
|
|
|
d4read.c \
|
|
|
|
d4http.c \
|
|
|
|
d4util.c \
|
|
|
|
d4odom.c \
|
|
|
|
d4cvt.c \
|
|
|
|
d4debug.c \
|
2021-09-28 08:36:33 +08:00
|
|
|
ncd4dispatch.c
|
2017-03-09 08:01:10 +08:00
|
|
|
|
|
|
|
HDRS= \
|
|
|
|
ncd4dispatch.h \
|
|
|
|
ncd4types.h \
|
|
|
|
ncd4.h \
|
|
|
|
d4chunk.h \
|
|
|
|
d4http.h \
|
|
|
|
d4read.h \
|
|
|
|
d4curlfunctions.h \
|
|
|
|
d4util.h \
|
|
|
|
d4debug.h \
|
|
|
|
d4odom.h \
|
|
|
|
d4bytes.h \
|
2021-09-28 08:36:33 +08:00
|
|
|
d4includes.h
|
2017-03-09 08:01:10 +08:00
|
|
|
|
|
|
|
if ENABLE_DAP4
|
|
|
|
if USE_NETCDF4
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/libsrc4
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Build convenience library
|
|
|
|
noinst_LTLIBRARIES = libdap4.la
|
|
|
|
libdap4_la_SOURCES = $(SRC) $(HDRS)
|
2021-11-02 12:37:05 +08:00
|
|
|
libdap4_la_CPPFLAGS += $(AM_CPPFLAGS)
|
2017-03-09 08:01:10 +08:00
|
|
|
libdap4_la_LIBADD =
|
|
|
|
|
|
|
|
endif # ENABLE_DAP4
|