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.8 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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-c.la
  5. pkgconfigdir = $(libdir)/pkgconfig
  6. pkgconfig_DATA = json-c.pc
  7. libjson_cincludedir = $(includedir)/json-c
  8. libjson_cinclude_HEADERS = \
  9. arraylist.h \
  10. bits.h \
  11. debug.h \
  12. json.h \
  13. json_config.h \
  14. json_c_version.h \
  15. json_inttypes.h \
  16. json_object.h \
  17. json_object_iterator.h \
  18. json_object_private.h \
  19. json_tokener.h \
  20. json_util.h \
  21. linkhash.h \
  22. printbuf.h \
  23. random_seed.h
  24. #libjsonx_includedir = $(libdir)/json-c-@VERSION@
  25. #
  26. #libjsonx_include_HEADERS = \
  27. # json_config.h
  28. libjson_c_la_LDFLAGS = -version-info 2:0:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
  29. libjson_c_la_SOURCES = \
  30. arraylist.c \
  31. debug.c \
  32. json_c_version.c \
  33. json_object.c \
  34. json_object_iterator.c \
  35. json_tokener.c \
  36. json_util.c \
  37. linkhash.c \
  38. printbuf.c \
  39. random_seed.c
  40. distclean-local:
  41. -rm -rf $(testsubdir)
  42. -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub depcomp install-sh ltmain.sh missing
  43. -rm -f INSTALL test-driver tests/Makefile.in compile
  44. maintainer-clean-local:
  45. -rm -rf configure
  46. uninstall-local:
  47. rm -rf "$(DESTDIR)@includedir@/json-c"
  48. rm -f "$(DESTDIR)@includedir@/json"
  49. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  50. Android.mk: Makefile.am
  51. androgenizer -:PROJECT json-c \
  52. -:SHARED libjson-c \
  53. -:TAGS eng debug \
  54. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  55. -:SOURCES $(libjson_c_la_SOURCES) $(nodist_libjson_c_la_SOURCES) \
  56. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_c_la_CFLAGS) \
  57. -:LDFLAGS $(libjson_c_la_LDFLAGS) $(libjson_c_la_LIBADD) \
  58. -:HEADER_TARGET json-c \
  59. -:HEADERS $(libjson_cinclude_HEADERS) \
  60. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  61. > $@