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 2.0 kB

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