File: Makefile.am

package info (click to toggle)
quantlib 1.2-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 30,760 kB
  • sloc: cpp: 232,809; ansic: 21,483; sh: 11,108; makefile: 4,717; lisp: 86
file content (48 lines) | stat: -rw-r--r-- 1,199 bytes parent folder | download | duplicates (3)
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
AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir}

this_includedir=${includedir}/${subdir}
this_include_HEADERS = \
	all.hpp \
	alimikhailhaqcopula.hpp \
	claytoncopula.hpp \
	farliegumbelmorgensterncopula.hpp \
	frankcopula.hpp \
	galamboscopula.hpp \
	gaussiancopula.hpp \
	gumbelcopula.hpp \
	huslerreisscopula.hpp \
	independentcopula.hpp \
	marshallolkincopula.hpp \
	maxcopula.hpp \
	mincopula.hpp \
	plackettcopula.hpp

libCopulas_la_SOURCES = \
	alimikhailhaqcopula.cpp \
	claytoncopula.cpp \
	farliegumbelmorgensterncopula.cpp \
	frankcopula.cpp \
	galamboscopula.cpp \
	gaussiancopula.cpp \
	gumbelcopula.cpp \
	huslerreisscopula.cpp \
	independentcopula.cpp \
	marshallolkincopula.cpp \
	maxcopula.cpp \
	mincopula.cpp \
	plackettcopula.cpp

noinst_LTLIBRARIES = libCopulas.la

all.hpp: Makefile.am
	echo "/* This file is automatically generated; do not edit.     */" > $@
	echo "/* Add the files to be included into Makefile.am instead. */" >> $@
	echo >> $@
	for i in $(filter-out all.hpp, $(this_include_HEADERS)); do \
		echo "#include <${subdir}/$$i>" >> $@; \
	done
	echo >> $@
	subdirs='$(SUBDIRS)'; for i in $$subdirs; do \
		echo "#include <${subdir}/$$i/all.hpp>" >> $@; \
	done