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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_tokener.h \
  25. json_util.h \
  26. linkhash.h \
  27. math_compat.h \
  28. printbuf.h \
  29. random_seed.h
  30. libjson_c_la_LDFLAGS = -version-info 3:0:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
  31. libjson_c_la_SOURCES = \
  32. arraylist.c \
  33. debug.c \
  34. json_c_version.c \
  35. json_object.c \
  36. json_object_iterator.c \
  37. json_tokener.c \
  38. json_util.c \
  39. linkhash.c \
  40. printbuf.c \
  41. random_seed.c
  42. distclean-local:
  43. -rm -rf $(testsubdir)
  44. -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub depcomp install-sh ltmain.sh missing
  45. -rm -f INSTALL test-driver tests/Makefile.in compile
  46. maintainer-clean-local:
  47. -rm -rf configure
  48. uninstall-local:
  49. rm -rf "$(DESTDIR)@includedir@/json-c"
  50. rm -f "$(DESTDIR)@includedir@/json"
  51. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  52. Android.mk: Makefile.am
  53. androgenizer -:PROJECT json-c \
  54. -:SHARED libjson-c \
  55. -:TAGS eng debug \
  56. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  57. -:SOURCES $(libjson_c_la_SOURCES) $(nodist_libjson_c_la_SOURCES) \
  58. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_c_la_CFLAGS) \
  59. -:LDFLAGS $(libjson_c_la_LDFLAGS) $(libjson_c_la_LIBADD) \
  60. -:HEADER_TARGET json-c \
  61. -:HEADERS $(libjson_cinclude_HEADERS) \
  62. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  63. > $@