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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. EXTRA_DIST = README.md README.html
  2. EXTRA_DIST += config.h.win32
  3. EXTRA_DIST += Doxyfile
  4. EXTRA_DIST += issues_closed_for_0.13.md
  5. dist-hook:
  6. test -d "$(distdir)/doc" || mkdir "$(distdir)/doc"
  7. chmod -R u+w "$(distdir)/doc"
  8. cd "$(distdir)" && doxygen
  9. SUBDIRS = . tests
  10. lib_LTLIBRARIES = libjson-c.la
  11. pkgconfigdir = $(libdir)/pkgconfig
  12. pkgconfig_DATA = json-c.pc
  13. libjson_cincludedir = $(includedir)/json-c
  14. libjson_cinclude_HEADERS = \
  15. arraylist.h \
  16. bits.h \
  17. debug.h \
  18. json.h \
  19. json_c_version.h \
  20. json_config.h \
  21. json_inttypes.h \
  22. json_object.h \
  23. json_object_iterator.h \
  24. json_object_private.h \
  25. json_pointer.h \
  26. json_tokener.h \
  27. json_util.h \
  28. json_visit.h \
  29. linkhash.h \
  30. math_compat.h \
  31. strdup_compat.h \
  32. snprintf_compat.h \
  33. vasprintf_compat.h \
  34. printbuf.h \
  35. random_seed.h \
  36. strerror_override.h
  37. libjson_c_la_LDFLAGS = -version-info 3:0:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
  38. libjson_c_la_SOURCES = \
  39. arraylist.c \
  40. debug.c \
  41. json_c_version.c \
  42. json_object.c \
  43. json_object_iterator.c \
  44. json_pointer.c \
  45. json_tokener.c \
  46. json_util.c \
  47. json_visit.c \
  48. linkhash.c \
  49. printbuf.c \
  50. random_seed.c \
  51. strerror_override.c \
  52. strerror_override_private.h
  53. DISTCLEANFILES=
  54. DISTCLEANFILES+= \
  55. config.h \
  56. json-c-uninstalled.pc \
  57. json-c.pc \
  58. json_config.h
  59. distclean-local:
  60. -rm -rf $(testsubdir)
  61. JSON_CLEANFILES=
  62. JSON_CLEANFILES+= \
  63. Makefile.in \
  64. aclocal.m4 \
  65. autom4te.cache/ \
  66. compile \
  67. config.guess \
  68. config.h.in \
  69. config.sub \
  70. configure \
  71. depcomp \
  72. install-sh \
  73. ltmain.sh \
  74. missing \
  75. test-driver \
  76. tests/Makefile.in
  77. JSON_CLEANFILES+= \
  78. libtool \
  79. stamp-h1 \
  80. stamp-h2
  81. # There's no built-in way to remove these after all the other
  82. # maintainer-clean steps happen, so do it explicitly here.
  83. really-clean:
  84. $(MAKE) maintainer-clean
  85. rm -rf ${JSON_CLEANFILES}
  86. uninstall-local:
  87. rm -rf "$(DESTDIR)@includedir@/json-c"
  88. rm -f "$(DESTDIR)@includedir@/json"
  89. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  90. Android.mk: Makefile.am
  91. androgenizer -:PROJECT json-c \
  92. -:SHARED libjson-c \
  93. -:TAGS eng debug \
  94. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  95. -:SOURCES $(libjson_c_la_SOURCES) $(nodist_libjson_c_la_SOURCES) \
  96. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_c_la_CFLAGS) \
  97. -:LDFLAGS $(libjson_c_la_LDFLAGS) $(libjson_c_la_LIBADD) \
  98. -:HEADER_TARGET json-c \
  99. -:HEADERS $(libjson_cinclude_HEADERS) \
  100. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  101. > $@