File: Makefile.am

package info (click to toggle)
quantlib 1.39-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 41,264 kB
  • sloc: cpp: 396,561; makefile: 6,539; python: 272; sh: 154; lisp: 86
file content (52 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download | duplicates (3)
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