forked from maekitalo/tntnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
62 lines (54 loc) · 1.18 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
ACLOCAL_AMFLAGS = -I m4
bin_SCRIPTS = tntnet-config tntnet-wizzard
pkgdata_SCRIPTS = tntnet-conf2xml.pl
tntnet-config: tntnet-config.in
if MAKE_SERVER
SERVERDIRS = \
framework/runtime \
framework/defcomp \
etc
endif
if MAKE_SDK
SDKDIRS = \
sdk/tools/common \
sdk/tools/ecppc \
sdk/tools/ecppl \
sdk/tools/ecppll
endif
if MAKE_DEMOS
DEMOSDIRS = \
sdk/demos
endif
if MAKE_UNITTEST
UNITTESTDIR = utest
endif
SUBDIRS = \
framework/common \
doc/man \
$(SERVERDIRS) \
$(CGIDIRS) \
$(SDKDIRS) \
$(DEMOSDIRS) \
$(UNITTESTDIR)
EXTRA_DIST = ecpp.vim \
doc/tntnet.pdf \
doc/tntnet.odt \
doc/logo-tntnet.cdr \
doc/tntnet.svg \
doc/tntnet-dynamite.svg \
doc/quick-start-guide.markdown \
COPYING \
sdk/demos/newsdb/Makefile \
sdk/demos/newsdb/README \
sdk/demos/newsdb/global.ecpp \
sdk/demos/newsdb/index.ecpp \
sdk/demos/newsdb/news.ecpp \
sdk/demos/newsdb/newscss.css \
sdk/demos/newsdb/newsdata.sh \
sdk/demos/newsdb/newsdb.sql \
sdk/demos/newsdb/tntnet.xml \
m4/acx_pthread.m4 \
m4/ax_check_compile_flag.m4 \
m4/ax_compiler_vendor.m4 \
m4/pkg.m4 \
$(pkgdata_SCRIPTS)