Merge pull request #90 from luke-jr/patch-1
[jansson.git] / src / Makefile.am
1 EXTRA_DIST = jansson_config.h.win32
2
3 include_HEADERS = jansson.h jansson_config.h
4
5 lib_LTLIBRARIES = libjansson.la
6 libjansson_la_SOURCES = \
7         dump.c \
8         error.c \
9         hashtable.c \
10         hashtable.h \
11         jansson_private.h \
12         load.c \
13         memory.c \
14         pack_unpack.c \
15         strbuffer.c \
16         strbuffer.h \
17         strconv.c \
18         utf.c \
19         utf.h \
20         value.c
21 libjansson_la_LDFLAGS = \
22         -no-undefined \
23         -export-symbols-regex '^json_' \
24         -version-info 7:1:3
25
26 if GCC
27 # These flags are gcc specific
28 AM_CFLAGS = -Wall -Wextra -Wdeclaration-after-statement -Werror
29 endif