]> Dogcows Code - chaz/yoink/blob - src/Moof/yajl/Makefile.am
added missing licenses
[chaz/yoink] / src / Moof / yajl / Makefile.am
1
2 # Here is an automake file which can be used to build yajl as a convenience
3 # library. I also had to rename src/api to src/yajl and change cpp include
4 # directives accordingly in order to allow clients to use the more appropriate
5 # #include <yajl/yajl_parse.h> syntax. -- Chaz
6
7 noinst_LTLIBRARIES = libyajl.la
8
9 libyajl_la_SOURCES = \
10 src/yajl.c \
11 src/yajl_alloc.c \
12 src/yajl_alloc.h \
13 src/yajl_buf.c \
14 src/yajl_buf.h \
15 src/yajl_bytestack.h \
16 src/yajl_encode.c \
17 src/yajl_encode.h \
18 src/yajl_gen.c \
19 src/yajl_lex.c \
20 src/yajl_lex.h \
21 src/yajl_parser.c \
22 src/yajl_parser.h \
23 $(ENDLIST)
24
25 noinst_HEADERS = \
26 src/yajl/yajl_common.h \
27 src/yajl/yajl_gen.h \
28 src/yajl/yajl_parse.h \
29 $(ENDLIST)
30
31 libyajl_la_CPPFLAGS = -Isrc
32
This page took 0.02857 seconds and 4 git commands to generate.