-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
44 lines (34 loc) · 1.19 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
# __BEGIN_LICENSE__
# Copyright (C) 2009 Michael J. Broxton
# All Rights Reserved.
# __END_LICENSE__
########################################################################
# sources
########################################################################
ACLOCAL_AMFLAGS = -I m4 -I thirdparty/m4
SUBDIRS = src
EXTRA_DIST = config/rules.mak config/relicense thirdparty/MBA_1.0_gpl thirdparty/cxxtest
########################################################################
# special top-level rules
########################################################################
#install-data-hook:
# $(INSTALL) src/config.h $(prefix)/include/
dist-hook:
rm -rf `find $(distdir) -name '.svn'`
if DIST_LICENSE
cp $(DIST_LICENSE) $(distdir)/COPYING
endif
if DIST_LICENSE_SUMMARY
find $(distdir) -type f | config/relicense $(DIST_LICENSE_SUMMARY) -
endif
if DIST_CONFIG_OPTIONS_DEFAULT
cp $(DIST_CONFIG_OPTIONS_DEFAULT) $(distdir)/config/config.options.default
endif
doxygen:
cd src && doxygen
app:
scripts/makeapp.py
########################################################################
# general
########################################################################
include $(top_srcdir)/config/rules.mak