You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- include Makefile.am.inc
-
- EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj
- SUBDIRS = . tests
-
- lib_LTLIBRARIES = libjson.la
-
- pkgconfigdir = $(libdir)/pkgconfig
- pkgconfig_DATA = json.pc
-
- libjsonincludedir = $(includedir)/json
- libjsoninclude_HEADERS = \
- arraylist.h \
- bits.h \
- debug.h \
- json.h \
- json_config.h \
- json_inttypes.h \
- json_object.h \
- json_object_iterator.h \
- json_object_private.h \
- json_tokener.h \
- json_util.h \
- linkhash.h \
- printbuf.h
-
- #libjsonx_includedir = $(libdir)/json-c-@VERSION@
- #
- #libjsonx_include_HEADERS = \
- # json_config.h
-
- libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined
-
- libjson_la_SOURCES = \
- arraylist.c \
- debug.c \
- json_object.c \
- json_tokener.c \
- json_util.c \
- linkhash.c \
- printbuf.c
-
-
- distclean-local:
- -rm -rf $(testsubdir)
- -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub configure depcomp install-sh ltmain.sh missing
-
- ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
-
- Android.mk: Makefile.am
- androgenizer -:PROJECT json-c \
- -:SHARED libjson \
- -:TAGS eng debug \
- -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
- -:SOURCES $(libjson_la_SOURCES) $(nodist_libjson_la_SOURCES) \
- -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_la_CFLAGS) \
- -:LDFLAGS $(libjson_la_LDFLAGS) $(libjson_la_LIBADD) \
- -:HEADER_TARGET json \
- -:HEADERS $(libjsoninclude_HEADERS) \
- -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
- > $@
|