-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile.am
41 lines (32 loc) · 1.11 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
#===========================================================================
#
# Makefile.am
#
#===========================================================================
# $Id: Makefile.am,v 1.17 2003/03/17 12:48:16 raitner Exp $
#---------------------------------------------------------------------------
# General Settings
#---------------------------------------------------------------------------
SUBDIRS = doc src include tests
AUTOMAKE_OPTIONS = dist-zip dist-bzip2 dist-zip
EXTRA_DIST = \
GTL.spec \
README.Irix \
README.win \
src/GTL.dsw \
src/GTL_dynamic.dsp \
src/GTL_static.dsp \
src/GTL.sln \
src/GTL_dynamic.vcproj \
src/GTL_static.vcproj
#---------------------------------------------------------------------------
# Goal for building documentation
#---------------------------------------------------------------------------
.PHONY: doc runtests
runtests:
cd tests; $(MAKE) runtests
doc:
cd doc; $(MAKE) doc
#---------------------------------------------------------------------------
# end of file
#---------------------------------------------------------------------------