2012-04-22 10:27:50 -05:00
|
|
|
include Makefile.am.inc
|
2007-03-13 08:26:20 +00:00
|
|
|
|
2009-08-19 08:31:29 +00:00
|
|
|
EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj
|
2012-04-22 10:27:50 -05:00
|
|
|
SUBDIRS = . tests
|
2009-01-06 22:53:25 +00:00
|
|
|
|
2007-03-13 08:26:20 +00:00
|
|
|
lib_LTLIBRARIES = libjson.la
|
|
|
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
|
pkgconfig_DATA = json.pc
|
|
|
|
|
|
|
|
|
|
libjsonincludedir = $(includedir)/json
|
|
|
|
|
libjsoninclude_HEADERS = \
|
2010-10-06 16:39:20 +00:00
|
|
|
arraylist.h \
|
2007-03-13 08:26:20 +00:00
|
|
|
bits.h \
|
|
|
|
|
debug.h \
|
2010-10-06 16:39:20 +00:00
|
|
|
json.h \
|
2012-02-15 20:44:54 -06:00
|
|
|
json_config.h \
|
2010-10-06 16:39:20 +00:00
|
|
|
json_inttypes.h \
|
2007-03-13 08:26:20 +00:00
|
|
|
json_object.h \
|
2010-10-06 16:39:20 +00:00
|
|
|
json_object_private.h \
|
|
|
|
|
json_tokener.h \
|
|
|
|
|
json_util.h \
|
|
|
|
|
linkhash.h \
|
|
|
|
|
printbuf.h
|
2007-03-13 08:26:20 +00:00
|
|
|
|
2012-02-15 20:44:54 -06:00
|
|
|
#libjsonx_includedir = $(libdir)/json-c-@VERSION@
|
|
|
|
|
#
|
|
|
|
|
#libjsonx_include_HEADERS = \
|
|
|
|
|
# json_config.h
|
|
|
|
|
|
2011-11-25 23:43:25 +02:00
|
|
|
libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined
|
2007-03-13 08:26:20 +00:00
|
|
|
|
|
|
|
|
libjson_la_SOURCES = \
|
|
|
|
|
arraylist.c \
|
|
|
|
|
debug.c \
|
|
|
|
|
json_object.c \
|
|
|
|
|
json_tokener.c \
|
|
|
|
|
json_util.c \
|
|
|
|
|
linkhash.c \
|
|
|
|
|
printbuf.c
|
|
|
|
|
|
2010-10-06 16:39:20 +00:00
|
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
|
-rm -rf $(testsubdir)
|
2012-12-09 15:46:35 -06:00
|
|
|
-rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub depcomp install-sh ltmain.sh missing
|
|
|
|
|
|
|
|
|
|
maintainer-clean-local:
|
|
|
|
|
-rm -rf configure
|
2010-10-06 16:39:20 +00:00
|
|
|
|