File: Makefile.am

package info (click to toggle)
libgetdata 0.7.3-6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 9,688 kB
  • ctags: 2,996
  • sloc: ansic: 56,077; sh: 10,976; fortran: 4,349; f90: 3,641; cpp: 3,528; python: 1,205; makefile: 857
file content (98 lines) | stat: -rw-r--r-- 2,633 bytes parent folder | download
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
92
93
94
95
96
97
98
# Copyright (C) 2009, 2011 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

if CC_WALL
WALL=-Wall
endif

if GETDATA_DEBUG
DEBUG_C = ../../src/debug.c
endif

SUBDIRS=test

if GDIDL_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 = ${WALL} $(IDL_CFLAGS) -fno-strict-aliasing $(GETDATA_CFLAGS)
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 ${DEBUG_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 -p .libs; fi
	cp $< .libs

clean-local:
	rm -rf ${BUILT_SOURCES} *~ idl_getdata.dlm makedlm.sh sublist.c.in sublist.stamp