-
Notifications
You must be signed in to change notification settings - Fork 32
/
Makefile.am
49 lines (40 loc) · 1.02 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
EXTRA_DIST = README.html
SUBDIRS = . tests
lib_LTLIBRARIES = libfastjson.la
noinst_LTLIBRARIES = libfastjson-internal.la
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libfastjson.pc
libfastjsonincludedir = $(includedir)/libfastjson
libfastjsoninclude_HEADERS = \
atomic.h \
json.h \
json_object.h \
json_object_iterator.h \
json_object_private.h \
json_tokener.h \
json_util.h
libfastjson_la_CFLAGS = $(WARN_CFLAGS)
# info on version-info:
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
libfastjson_la_LDFLAGS = \
-version-info 7:0:3 \
-export-symbols-regex '^fjson_.*' \
-no-undefined \
@JSON_BSYMBOLIC_LDFLAGS@
libfastjson_la_LIBADD = libfastjson-internal.la
libfastjson_la_SOURCES = \
json_version.c \
json_object.c \
json_print.c \
json_object_iterator.c \
json_tokener.c \
json_util.c
libfastjson_internal_la_CFLAGS = $(WARN_CFLAGS)
libfastjson_internal_la_SOURCES = \
arraylist.h \
arraylist.c \
debug.h \
debug.c \
printbuf.h \
printbuf.c
ACLOCAL_AMFLAGS = -I m4