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
|
SUBDIRS = ql m4 man Docs Examples test-suite
ACLOCAL_AMFLAGS = -I m4
bin_SCRIPTS = quantlib-config
if EMACS_FOUND
dist_lisp_LISP = quantlib.el
endif
m4datadir = $(datadir)/aclocal
dist_m4data_DATA = quantlib.m4
pkgconfigdir = $(libdir)/pkgconfig
nodist_pkgconfig_DATA = quantlib.pc
EXTRA_DIST = \
ChangeLog.txt \
CMakeLists.txt \
Contributors.txt \
LICENSE.TXT \
News.md \
QuantLib.natvis \
QuantLib.props \
QuantLib.spec \
QuantLib.sln \
QuantLib.vcxproj \
QuantLib.vcxproj.filters \
README.md \
autogen.sh
.PHONY: examples check-examples
examples:
$(MAKE) -C Examples examples
check-examples:
$(MAKE) -C Examples check-examples
.PHONY: benchmark
benchmark:
$(MAKE) -C test-suite benchmark
.PHONY: docs
docs:
$(MAKE) -C Docs docs
dist-hook:
mkdir -p $(distdir)/build
mkdir -p $(distdir)/cmake
cp -p $(srcdir)/cmake/GenerateHeaders.cmake $(distdir)/cmake
cp -p $(srcdir)/cmake/Platform.cmake $(distdir)/cmake
cp -p $(srcdir)/cmake/QuantLibConfig.cmake.in $(distdir)/cmake
|