-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
34 lines (27 loc) · 914 Bytes
/
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
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = 1.4 foreign
if HAVE_DEMOS
DEMO_DIRS = book demos samples xdemos
exec:
@for subdir in $(DEMO_DIRS); do \
echo "Making exec in $$subdir"; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) exec); \
done;
else
exec:
endif
if NEED_GLUT
SUB_GLUT = src-glut
endif
SUBDIRS = include src src-glu $(SUB_GLUT) $(DEMO_DIRS) util
EXTRA_DIST = docs/INSTALL docs/INSTALL.GNU docs/CONFIG docs/IAFA-PACKAGE \
docs/RELNOTES docs/VERSIONS docs/CONFORM docs/COPYING \
docs/COPYRIGHT docs/README docs/README.3DFX docs/README.BEOS \
docs/README.GGI docs/README.MINGW32 docs/README.MITS \
docs/README.QUAKE docs/README.THREADS docs/README.X11 \
images/girl.rgb images/reflect.rgb images/tile.rgb
strip:
@for subdir in src src-glu $(SUB_GLUT); do \
echo "Making strip in $$subdir"; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) strip); \
done;