The .ipp suffix is for inlined template implementation code. While at it, use #ifdef and #ifndef instead of #if defined().
21 lines
365 B
Makefile
21 lines
365 B
Makefile
include_HEADERS = jansson.h jansson.hpp jansson.ipp
|
|
|
|
lib_LTLIBRARIES = libjansson.la
|
|
libjansson_la_SOURCES = \
|
|
dump.c \
|
|
hashtable.c \
|
|
hashtable.h \
|
|
jansson_private.h \
|
|
load.c \
|
|
strbuffer.c \
|
|
strbuffer.h \
|
|
utf.c \
|
|
utf.h \
|
|
util.h \
|
|
value.c
|
|
libjansson_la_LDFLAGS = \
|
|
-export-symbols-regex '^json_' \
|
|
-version-info 2:0:2
|
|
|
|
AM_CFLAGS = -Wall -Wextra -Werror
|