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 (118 lines) | stat: -rw-r--r-- 2,992 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Copyright (C) 2008-2010 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

SED = @SED@
DIFF = @DIFF@

if FC_WEXTRA
FC_WEXTRA=-Wextra
endif

if FC_WALL
FC_WALL=-Wall
endif

if CC_WEXTRA
CC_WEXTRA=-Wextra
endif

if CC_WALL
CC_WALL=-Wall
endif

if MAKE_F95BINDINGS
F95_INC=getdata.mod
F95_LIB=libf95getdata.la
endif

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

FCFLAGS += $(FC_WALL) $(FC_WEXTRA)
INCLUDES = -I$(top_srcdir)/src
EXTRA_DIST=getdata.f.in getdata.f90.in

SUBDIRS = test

BUILT_SOURCES=getdata.f $(F95_INC)

nodist_include_HEADERS=getdata.f $(F95_INC)

lib_LTLIBRARIES=libfgetdata.la $(F95_LIB)
libfgetdata_la_CPPFLAGS = ${CC_WALL} $(CC_WEXTRA)
libfgetdata_la_SOURCES = fgetdata.c fgetdata.h $(DEBUG_C)
libfgetdata_la_LIBADD=../../src/libgetdata.la
libfgetdata_la_LDFLAGS = -version-info @FGETDATA_VERSION@

nodist_libf95getdata_la_SOURCES=getdata.f90
libf95getdata_la_LIBADD=libfgetdata.la ../../src/libgetdata.la
libf95getdata_la_LDFLAGS = -version-info @F95GETDATA_VERSION@

getdata.mod: getdata.o

clean-local:
	rm -rf getdata.mod make_parameters.sed.in make_parameters.stamp \
		make_parameters.sed getdata.f getdata.f90 getdata.mod
	rm -rf *~

make_parameters.sed.in: ../make_parameters ../../src/getdata.h
	../make_parameters f > $@

../make_parameters: ../make_parameters.c
	cd .. && ${MAKE} make_parameters

make_parameters.sed: make_parameters.stamp
	@if test ! -f $@; then \
		rm -f $<; \
		$(MAKE) $<; \
		fi

if HAVE_DIFF

make_parameters.stamp: make_parameters.sed.in
	@if $(DIFF) make_parameters.sed make_parameters.sed.in >/dev/null 2>&1; then \
		echo "make_parameters.sed is unchanged"; \
		else \
		rm -f make_parameters.sed; \
		cp make_parameters.sed.in make_parameters.sed; \
		fi; \
		touch make_parameters.stamp

else

make_parameters.stamp: make_parameters.sed.in
		@rm -f make_parameters.sed; \
		cp make_parameters.sed.in make_parameters.sed; \
		touch make_parameters.stamp

endif

getdata.f: $(srcdir)/getdata.f.in make_parameters.sed
	rm -f $@
	$(SED) -f make_parameters.sed $< > $@
	chmod a-w $@

getdata.f90: $(srcdir)/getdata.f90.in make_parameters.sed
	rm -f $@
	$(SED) -f make_parameters.sed $< > $@
	chmod a-w $@