Truncate error source from start, not end, if it's too long to fit
[jansson.git] / src / Makefile.am
1 include_HEADERS = jansson.h jansson_config.h
2
3 lib_LTLIBRARIES = libjansson.la
4 libjansson_la_SOURCES = \
5         dump.c \
6         error.c \
7         hashtable.c \
8         hashtable.h \
9         jansson_private.h \
10         load.c \
11         memory.c \
12         pack_unpack.c \
13         strbuffer.c \
14         strbuffer.h \
15         utf.c \
16         utf.h \
17         value.c
18 libjansson_la_LDFLAGS = \
19         -export-symbols-regex '^json_' \
20         -version-info 3:0:3
21
22 if GCC
23 # These flags are gcc specific
24 AM_CFLAGS = -Wall -Wextra -Werror
25 endif