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 (43 lines) | stat: -rw-r--r-- 1,108 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

AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir}

this_includedir=${includedir}/${subdir}
this_include_HEADERS = \
	all.hpp \
	fdm2dblackscholessolver.hpp \
	fdm2dimsolver.hpp \
	fdm3dimsolver.hpp \
	fdmbackwardsolver.hpp \
	fdmbatessolver.hpp \
	fdmblackscholessolver.hpp \
	fdmhestonhullwhitesolver.hpp \
	fdmhestonsolver.hpp \
	fdmndimsolver.hpp \
	fdmsimple2dbssolver.hpp \
	fdmsolverdesc.hpp

libFdmSolvers_la_SOURCES = \
	fdm2dblackscholessolver.cpp \
	fdm2dimsolver.cpp \
	fdm3dimsolver.cpp \
	fdmbackwardsolver.cpp \
	fdmbatessolver.cpp \
	fdmblackscholessolver.cpp \
	fdmhestonhullwhitesolver.cpp \
	fdmhestonsolver.cpp \
	fdmsimple2dbssolver.cpp

noinst_LTLIBRARIES = libFdmSolvers.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