1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
# Copyright (C) 2009, 2010, 2011, 2013, 2016 D. V. Wiebe
#
##########################################################################
#
# This file is part of the GetData project.
#
# GetData is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation; either version 2.1 of the License, or (at your
# option) any later version.
#
# GetData is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with GetData; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
AUTOMAKE_OPTIONS = foreign
SUBDIRS=test
if GD_EXTERNAL
GDIDL_GETDATA_LIBS=$(GETDATA_LIBS)
else
GDIDL_GETDATA_LIBS=../../src/libgetdata.la
endif
idl_LTLIBRARIES = idl_getdata.la
nodist_idl_HEADERS = idl_getdata.dlm
# idl makes heavy use of type punning, ergo -fno-strict-aliasing
AM_CFLAGS = ${GD_CC_WALL} $(IDL_CFLAGS) -fno-strict-aliasing $(GETDATA_CFLAGS)
AM_CPPFLAGS = -I$(top_srcdir)/src
BUILT_SOURCES=sublist.c constants.c
idl_getdata_la_LDFLAGS = -module -avoid-version -export-symbols-regex IDL_Load \
-precious-files-regex 'idl_getdata\.dlm' $(IDL_LIBS)
idl_getdata_la_LIBADD = $(GDIDL_GETDATA_LIBS)
idl_getdata_la_SOURCES = getdata.c
nodist_idl_getdata_la_SOURCES = constants.c sublist.c
sublist.c.in: getdata.c makedlm.sh
${SHELL} ./makedlm.sh -c $< > $@
sublist.c: sublist.stamp
@if test ! -f $@; then \
rm -f $<; \
$(MAKE) $<; \
fi
if HAVE_DIFF
sublist.stamp: sublist.c.in
@if $(DIFF) sublist.c sublist.c.in >/dev/null 2>&1; then \
echo "sublist.c is unchanged"; \
else \
rm -f sublist.c; \
cp sublist.c.in sublist.c; \
fi; \
touch sublist.stamp
else
sublist.stamp: sublist.c.in
@rm -f sublist.c; \
cp sublist.c.in sublist.c; \
touch sublist.stamp
endif
constants.c: ../make_parameters
../make_parameters i > $@
../make_parameters: ../make_parameters.c
cd .. && ${MAKE} make_parameters
idl_getdata.dlm: getdata.c makedlm.sh
${SHELL} ./makedlm.sh -d $< > $@
all-local: .libs/idl_getdata.dlm
# This is required to properly run the test suite
.libs/idl_getdata.dlm: idl_getdata.dlm
if [ ! -e .libs ]; then mkdir .libs; fi
cp $< .libs
clean-local:
rm -rf ${BUILT_SOURCES} *~ idl_getdata.dlm makedlm.sh sublist.c.in sublist.stamp
|