forked from solstag/graph-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
66 lines (61 loc) · 1.47 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
## Process this file with automake to produce Makefile.in
SUBDIRS = src
graphtooldocdir = ${PACKAGE_DOC_DIR}
nobase_dist_graphtooldoc_DATA = \
README\
COPYING\
AUTHORS\
INSTALL\
NEWS\
TODO\
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/community.rst \
doc/flow.rst \
doc/Makefile \
doc/quickstart.rst \
doc/generation.rst \
doc/mathjax.py \
doc/run_action.rst \
doc/stats.rst \
doc/graph_tool.rst \
doc/modules.rst \
doc/topology.rst \
doc/conf.py \
doc/pyenv.py \
doc/community.xml \
doc/search_example.xml \
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
# Copy all the spec files. Of cource, only one is actually used.
dist-hook:
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done