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

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