-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathMakefile.am
62 lines (54 loc) · 1.08 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
if MAKE_SERVER
SERVERDIRS = \
framework/runtime \
framework/defcomp \
etc
endif
if MAKE_SDK
SDKDIRS = \
sdk/tools/common \
sdk/tools/ecppc \
misc
endif
if MAKE_DEMOS
DEMODIRS = \
demo
endif
if MAKE_UNITTEST
TESTDIRS = \
test
endif
SUBDIRS = \
framework/common \
doc/man \
$(SERVERDIRS) \
$(SDKDIRS) \
$(DEMODIRS) \
$(TESTDIRS)
EXTRA_DIST = \
README.md \
COPYING \
demo/newsdb/Makefile \
demo/newsdb/README \
demo/newsdb/global.ecpp \
demo/newsdb/index.ecpp \
demo/newsdb/news.ecpp \
demo/newsdb/newscss.css \
demo/newsdb/newsdata.sh \
demo/newsdb/newsdb.sql \
doc/jquery-howto.markdown \
doc/quick-start-guide.markdown \
doc/static-howto.markdown \
doc/upload-howto.markdown \
m4/acx_pthread.m4 \
m4/ax_check_compile_flag.m4 \
m4/ax_compiler_vendor.m4 \
m4/pkg.m4 \
misc/ecpp.vim \
misc/tntnet-logo.svg \
$(pkgdata_SCRIPTS)
pkgconfigdir = $(libdir)/pkgconfig/
pkgconfig_DATA = \
pkgconfig/tntnet.pc \
pkgconfig/tntnet_sdk.pc