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

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