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
|
AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir}
this_includedir=${includedir}/${subdir}
this_include_HEADERS = \
all.hpp \
atmadjustedsmilesection.hpp \
atmsmilesection.hpp \
basketgeneratingengine.hpp \
floatfloatswap.hpp \
floatfloatswaption.hpp \
gaussian1dmodel.hpp \
gaussian1dcapfloorengine.hpp \
gaussian1dfloatfloatswaptionengine.hpp \
gaussian1djamshidianswaptionengine.hpp \
gaussian1dnonstandardswaptionengine.hpp \
gaussian1dswaptionengine.hpp \
gsr.hpp \
gsrprocess.hpp \
kahalesmilesection.hpp \
markovfunctional.hpp \
mfstateprocess.hpp \
nonstandardswap.hpp \
nonstandardswaption.hpp \
smilesectionutils.hpp
libModels_la_SOURCES = \
atmadjustedsmilesection.cpp \
atmsmilesection.cpp \
basketgeneratingengine.cpp \
floatfloatswap.cpp \
floatfloatswaption.cpp \
gaussian1dmodel.cpp \
gaussian1dcapfloorengine.cpp \
gaussian1dfloatfloatswaptionengine.cpp \
gaussian1djamshidianswaptionengine.cpp \
gaussian1dnonstandardswaptionengine.cpp \
gaussian1dswaptionengine.cpp \
gsr.cpp \
gsrprocess.cpp \
kahalesmilesection.cpp \
markovfunctional.cpp \
mfstateprocess.cpp \
nonstandardswap.cpp \
nonstandardswaption.cpp \
smilesectionutils.cpp
noinst_LTLIBRARIES = libModels.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
|