Imported Upstream version 0.10
[platform/upstream/json-c.git] / Makefile.am
1 include Makefile.am.inc
2
3 EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj
4 SUBDIRS = . tests
5
6 lib_LTLIBRARIES = libjson.la
7
8 pkgconfigdir = $(libdir)/pkgconfig
9 pkgconfig_DATA = json.pc
10
11 libjsonincludedir = $(includedir)/json
12 libjsoninclude_HEADERS = \
13         arraylist.h \
14         bits.h \
15         debug.h \
16         json.h \
17         json_config.h \
18         json_inttypes.h \
19         json_object.h \
20         json_object_private.h \
21         json_tokener.h \
22         json_util.h \
23         linkhash.h \
24         printbuf.h
25
26 #libjsonx_includedir = $(libdir)/json-c-@VERSION@
27 #
28 #libjsonx_include_HEADERS = \
29 #       json_config.h
30
31 libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined
32
33 libjson_la_SOURCES = \
34         arraylist.c \
35         debug.c \
36         json_object.c \
37         json_tokener.c \
38         json_util.c \
39         linkhash.c \
40         printbuf.c
41
42
43 distclean-local:
44         -rm -rf $(testsubdir)
45         -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub configure depcomp install-sh ltmain.sh missing
46