forked from lballabio/QuantLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
53 lines (44 loc) · 1004 Bytes
/
Makefile.am
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
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 = \
Authors.txt \
BUGS.txt \
ChangeLog.txt \
Contributors.txt \
History.txt \
INSTALL.txt \
LICENSE.TXT \
News.txt \
QuantLib.dsp \
QuantLib.dsw \
QuantLib.mak \
QuantLib.nsi \
QuantLib.sln \
QuantLib.spec \
QuantLib.vcproj \
Readme.txt \
TODO.txt \
bootstrap \
makefile.mak
.PHONY: examples
examples:
$(MAKE) -C Examples examples
.PHONY: docs-all docs-html docs-html-online docs-pdf docs-man docs-clean
BASEPATH = @abs_top_srcdir@
docs-all:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-all
docs-html:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-html
docs-html-online:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-html-online
docs-pdf:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-pdf
docs-man:
BASEPATH=$(BASEPATH) $(MAKE) -C Docs docs-man
docs-clean:
$(MAKE) -C Docs docs-clean