forked from vpython/visual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
29 lines (21 loc) · 711 Bytes
/
Makefile.am
File metadata and controls
29 lines (21 loc) · 711 Bytes
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
## Process this file with automake to produce Makefile.in
# Makefile for the top-level source directory
AUTOMAKE_OPTIONS = foreign dist-bzip2
SUBDIRS = site-packages/visual site-packages/vis src
# Logic to distribute the header files and miscellaneous files.
EXTRA_DIST = include HACKING.txt INSTALL.txt \
authors.txt license.txt NEWS.txt \
dependencies/Readme.txt dependencies/threadpool
dist-hook:
rm -rf `find $(distdir)/include -name CVS` $(distdir)/include/config.h
# Logic to install the "vpython" script (doesn't work properly)
#bin_SCRIPTS = bin/vpython
if BUILD_EXAMPLES
SUBDIRS += examples
endif
##if BUILD_VIDLE
##SUBDIRS += site-packages/vidle
##endif
if BUILD_DOCS
SUBDIRS += docs
endif