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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. include Makefile.am.inc
  2. EXTRA_DIST = README.html README-WIN32.html config.h.win32 doc json-c.vcproj
  3. SUBDIRS = . tests
  4. lib_LTLIBRARIES = libjson-c.la
  5. pkgconfigdir = $(libdir)/pkgconfig
  6. pkgconfig_DATA = json-c.pc
  7. libjson_cincludedir = $(includedir)/json-c
  8. libjson_cinclude_HEADERS = \
  9. arraylist.h \
  10. bits.h \
  11. debug.h \
  12. json.h \
  13. json_config.h \
  14. json_c_version.h \
  15. json_inttypes.h \
  16. json_object.h \
  17. json_object_iterator.h \
  18. json_object_private.h \
  19. json_tokener.h \
  20. json_util.h \
  21. linkhash.h \
  22. printbuf.h
  23. #libjsonx_includedir = $(libdir)/json-c-@VERSION@
  24. #
  25. #libjsonx_include_HEADERS = \
  26. # json_config.h
  27. libjson_c_la_LDFLAGS = -version-info 2:0:0 -no-undefined @JSON_BSYMBOLIC_LDFLAGS@
  28. libjson_c_la_SOURCES = \
  29. arraylist.c \
  30. debug.c \
  31. json_c_version.c \
  32. json_object.c \
  33. json_object_iterator.c \
  34. json_tokener.c \
  35. json_util.c \
  36. linkhash.c \
  37. printbuf.c
  38. distclean-local:
  39. -rm -rf $(testsubdir)
  40. -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub depcomp install-sh ltmain.sh missing
  41. maintainer-clean-local:
  42. -rm -rf configure
  43. uninstall-local:
  44. rm -rf "$(DESTDIR)@includedir@/json-c"
  45. rm -f "$(DESTDIR)@includedir@/json"
  46. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  47. Android.mk: Makefile.am
  48. androgenizer -:PROJECT json-c \
  49. -:SHARED libjson-c \
  50. -:TAGS eng debug \
  51. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  52. -:SOURCES $(libjson_c_la_SOURCES) $(nodist_libjson_c_la_SOURCES) \
  53. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_c_la_CFLAGS) \
  54. -:LDFLAGS $(libjson_c_la_LDFLAGS) $(libjson_c_la_LIBADD) \
  55. -:HEADER_TARGET json-c \
  56. -:HEADERS $(libjson_cinclude_HEADERS) \
  57. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  58. > $@