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.

Makefile.am 1.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. include Makefile.am.inc
  2. EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj
  3. SUBDIRS = . tests
  4. lib_LTLIBRARIES = libjson.la
  5. pkgconfigdir = $(libdir)/pkgconfig
  6. pkgconfig_DATA = json.pc
  7. libjsonincludedir = $(includedir)/json
  8. libjsoninclude_HEADERS = \
  9. arraylist.h \
  10. bits.h \
  11. debug.h \
  12. json.h \
  13. json_config.h \
  14. json_inttypes.h \
  15. json_object.h \
  16. json_object_private.h \
  17. json_tokener.h \
  18. json_util.h \
  19. linkhash.h \
  20. printbuf.h
  21. #libjsonx_includedir = $(libdir)/json-c-@VERSION@
  22. #
  23. #libjsonx_include_HEADERS = \
  24. # json_config.h
  25. libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined
  26. libjson_la_SOURCES = \
  27. arraylist.c \
  28. debug.c \
  29. json_object.c \
  30. json_tokener.c \
  31. json_util.c \
  32. linkhash.c \
  33. printbuf.c
  34. distclean-local:
  35. -rm -rf $(testsubdir)
  36. -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub configure depcomp install-sh ltmain.sh missing
  37. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  38. Android.mk: Makefile.am
  39. androgenizer -:PROJECT json-c \
  40. -:SHARED libjson \
  41. -:TAGS eng debug \
  42. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  43. -:SOURCES $(libjson_la_SOURCES) $(nodist_libjson_la_SOURCES) \
  44. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_la_CFLAGS) \
  45. -:LDFLAGS $(libjson_la_LDFLAGS) $(libjson_la_LIBADD) \
  46. -:HEADER_TARGET json \
  47. -:HEADERS $(libjsoninclude_HEADERS) \
  48. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  49. > $@