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
|
SUBDIRS = config ql man Docs Examples test-suite
bin_SCRIPTS = quantlib-config
if EMACS_FOUND
dist_lisp_LISP = quantlib.el
endif
m4datadir = $(datadir)/aclocal
dist_m4data_DATA = quantlib.m4
EXTRA_DIST = \
Announce.txt \
Authors.txt \
ChangeLog.txt \
Contributors.txt \
LICENSE.TXT \
News.txt \
QuantLib.dev \
QuantLib.nsi \
QuantLib_vc7.sln \
QuantLib_vc7.vcproj \
QuantLib_vc8.sln \
QuantLib_vc8.vcproj \
Readme.txt \
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-man docs-online docs-dist docs-clean
BASEPATH = @abs_top_srcdir@
docs:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-all
html-local:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-html
pdf-local:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-pdf
ps-local:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-ps
docs-man:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-man
docs-online:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-online
docs-dist:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-dist
docs-clean:
$(MAKE) -C Docs docs-clean
dist-hook:
mkdir -p $(distdir)/build
|