-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMakefile.am
77 lines (55 loc) · 1.87 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright(c)'1994-2009 by The Givaro group
# This file is part of Givaro.
# Givaro is governed by the CeCILL-B license under French law
# and abiding by the rules of distribution of free software.
# see the COPYRIGHT file for more details.
ACLOCAL_AMFLAGS = -I macros
SUBDIRS=src macros tests docs examples benchmarks
include_HEADERS=givaro-config.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = givaro.pc
docs:docs/givaro-html/index.html
docs/givaro-html/index.html:
(cd docs; ${MAKE} docs)
.PHONY:examples benchmarks
examples:
(cd examples; ${MAKE} examples)
benchmarks:
(cd benchmarks; ${MAKE} benchmarks)
perfpublisher: benchmarks/perfpublisher tests/perfpublisher
benchmarks/perfpublisher:
(cd benchmarks; ${MAKE} perfpublisher)
tests/perfpublisher:
(cd tests; ${MAKE} perfpublisher)
bin_SCRIPTS=givaro-config
pkgdata_DATA = givaro-makefile
EXTRA_DIST=COPYRIGHT Licence_CeCILL-B_V1-en.txt Licence_CeCILL-B_V1-fr.txt \
givaro.doxy \
README.md
DIST_SUBDIRS=${SUBDIRS}
DISTCLEANFILES = src/kernel/system/givaro \
src/kernel/bstruct/givaro \
src/kernel/integer/givaro \
src/kernel/memory/givaro \
src/kernel/rational/givaro \
src/kernel/recint/recint \
src/kernel/field/givaro \
src/kernel/ring/givaro \
src/kernel/gmp++/gmp++ \
src/library/matrix/givaro \
src/library/poly1/givaro \
src/library/tools/givaro \
src/library/vector/givaro \
givaro-config.h \
docs/DoxyfileDev \
docs/Doxyfile
uninstall-hook:
(test -d "$(includedir)/givaro" && rmdir "$(includedir)/givaro") || true
(test -d "$(includedir)/gmp++" && rmdir "$(includedir)/gmp++") || true
(test -d "$(includedir)/recint" && rmdir "$(includedir)/recint") || true
docs_dev:docs/givaro-dev-html/index.html
docs/givaro-dev-html/index.html:
(cd docs; ${MAKE} docs_dev)
VERSION=4.2.1alpha0
git:
git commit -a; git pull; git push