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

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