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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
SUBDIRS = \
cashflows \
currencies \
experimental \
indexes \
instruments \
legacy \
math \
methods \
models \
patterns \
pricingengines \
processes \
quotes \
termstructures \
time \
utilities
AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir}
this_includedir=${includedir}/${subdir}
this_include_HEADERS = \
auto_link.hpp \
cashflow.hpp \
compounding.hpp \
config.hpp \
currency.hpp \
default.hpp \
discretizedasset.hpp \
errors.hpp \
exchangerate.hpp \
exercise.hpp \
event.hpp \
grid.hpp \
handle.hpp \
index.hpp \
instrument.hpp \
interestrate.hpp \
mathconstants.hpp \
money.hpp \
numericalmethod.hpp \
option.hpp \
payoff.hpp \
position.hpp \
prices.hpp \
pricingengine.hpp \
qldefines.hpp \
quantlib.hpp \
quote.hpp \
settings.hpp \
stochasticprocess.hpp \
termstructure.hpp \
timegrid.hpp \
timeseries.hpp \
types.hpp \
version.hpp \
volatilitymodel.hpp
libQuantLib_la_SOURCES = \
cashflow.cpp \
currency.cpp \
discretizedasset.cpp \
errors.cpp \
event.cpp \
exchangerate.cpp \
exercise.cpp \
index.cpp \
interestrate.cpp \
money.cpp \
position.cpp \
prices.cpp \
settings.cpp \
stochasticprocess.cpp \
termstructure.cpp \
timegrid.cpp
lib_LTLIBRARIES = libQuantLib.la
libQuantLib_la_LDFLAGS = -version-info 0:0:0
libQuantLib_la_LIBADD = \
cashflows/libCashFlows.la \
currencies/libCurrencies.la \
experimental/libExperimental.la \
indexes/libIndexes.la \
instruments/libInstruments.la \
legacy/libLegacy.la \
math/libMath.la \
methods/libMethods.la \
models/libModels.la \
pricingengines/libPricingEngines.la \
processes/libProcesses.la \
quotes/libQuotes.la \
termstructures/libTermStructures.la \
time/libTime.la \
utilities/libUtilities.la
EXTRA_DIST= \
config.ansi.hpp \
config.msvc.hpp \
config.mingw.hpp \
config.sun.hpp \
userconfig.hpp
quantlib.hpp: Makefile.am
echo "/* This file is automatically generated; do not edit. */" > $@
echo "/* Add the files to be included into Makefile.am instead. */" >> $@
echo >> $@
echo "#include <ql/qldefines.hpp>" >> $@
echo "#include <ql/version.hpp>" >> $@
echo "#ifdef BOOST_MSVC" >> $@
echo "# include <ql/auto_link.hpp>" >> $@
echo "#endif" >> $@
echo >> $@
for i in $(filter-out auto_link.hpp config.hpp quantlib.hpp \
qldefines.hpp mathconstants.hpp version.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
install-data-hook:
$(SED) -e "s,HAVE_CONFIG_H,QL_HAVE_CONFIG_H," \
-e "s,/\* install-hook \*/,#define QL_HAVE_CONFIG_H," \
$(DESTDIR)$(this_includedir)/qldefines.hpp > .qldefines.hpp
$(INSTALL_DATA) .qldefines.hpp $(DESTDIR)$(this_includedir)/qldefines.hpp
rm .qldefines.hpp
$(SED) -e "s,PACKAGE,QL_PACKAGE," \
-e "s,STDC,QL_STDC," \
-e "s, HAVE, QL_HAVE," \
-e "s, VERSION, QL_AC_VERSION," \
$(DESTDIR)$(this_includedir)/config.hpp > .config.hpp
$(INSTALL_DATA) .config.hpp $(DESTDIR)$(this_includedir)/config.hpp
rm .config.hpp
depend:
makedepend $(INCLUDES) -- $(CFLAGS) -- $(SOURCES)
|