-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
69 lines (63 loc) · 1.7 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
## Process this file with automake to produce Makefile.in
SUBDIRS = src
graphtooldocdir = ${PACKAGE_DOC_DIR}
nobase_dist_graphtooldoc_DATA = \
README.md \
LICENSE \
AUTHORS \
INSTALL \
src/boost-workaround/LICENSE_1_0.txt \
doc/centrality.rst \
doc/correlations.rst \
doc/price.py \
doc/search_module.rst \
doc/util.rst \
doc/clustering.rst \
doc/draw.rst \
doc/index.rst \
doc/spectral.rst \
doc/inference.rst \
doc/flow.rst \
doc/Makefile \
doc/quickstart.rst \
doc/generation.rst \
doc/mathjax.py \
doc/stats.rst \
doc/graph_tool.rst \
doc/modules.rst \
doc/topology.rst \
doc/conf.py \
doc/pyenv.py \
doc/search_example.xml \
doc/demos/index.rst \
doc/demos/animation/animation.rst \
doc/demos/inference/inference.rst \
doc/sphinxext/README.txt \
doc/sphinxext/LICENSE.txt \
doc/sphinxext/__init__.py \
doc/sphinxext/setup.py \
doc/sphinxext/comment_eater.py \
doc/sphinxext/docscrape.py \
doc/sphinxext/MANIFEST.in \
doc/sphinxext/phantom_import.py \
doc/sphinxext/compiler_unparse.py \
doc/sphinxext/docscrape_sphinx.py \
doc/sphinxext/numpydoc.py \
doc/sphinxext/traitsdoc.py \
doc/sphinxext/tests/test_docscrape.py \
doc/gt_theme/static/flasky.css \
doc/gt_theme/static/gt_style.css \
doc/gt_theme/theme.conf \
doc/.static/graph-icon.png \
doc/.static/graph-icon.ico
EXTRA_DIST = $(graphtooldoc_DATA) autogen.sh
pkgconfigdir = @pkgconfigdir@
pkgconfig_DATA = graph-tool-py${PYTHON_VERSION}.pc
# Copy all the spec files. Of cource, only one is actually used.
dist-hook:
cd ${top_srcdir} && git log --stat --name-only --date=short --abbrev-commit > ${distdir}/ChangeLog
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done