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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. libjsonincludedir = $(includedir)/json-c
  8. libjsoninclude_HEADERS = \
  9. arraylist.h \
  10. bits.h \
  11. debug.h \
  12. json.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. printbuf.h
  22. #libjsonx_includedir = $(libdir)/json-c-@VERSION@
  23. #
  24. #libjsonx_include_HEADERS = \
  25. # json_config.h
  26. libjson_c_la_LDFLAGS = -version-info 1:0:1 -no-undefined
  27. libjson_c_la_SOURCES = \
  28. arraylist.c \
  29. debug.c \
  30. json_object.c \
  31. json_tokener.c \
  32. json_util.c \
  33. linkhash.c \
  34. printbuf.c
  35. distclean-local:
  36. -rm -rf $(testsubdir)
  37. -rm -rf config.h.in~ Makefile.in aclocal.m4 autom4te.cache/ config.guess config.sub configure depcomp install-sh ltmain.sh missing
  38. ANDROID_CFLAGS = -I$(top_srcdir) -DHAVE_CONFIG_H
  39. Android.mk: Makefile.am
  40. androgenizer -:PROJECT json-c \
  41. -:SHARED libjson \
  42. -:TAGS eng debug \
  43. -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
  44. -:SOURCES $(libjson_la_SOURCES) $(nodist_libjson_la_SOURCES) \
  45. -:CFLAGS $(DEFS) $(ANDROID_CFLAGS) $(libjson_la_CFLAGS) \
  46. -:LDFLAGS $(libjson_la_LDFLAGS) $(libjson_la_LIBADD) \
  47. -:HEADER_TARGET json \
  48. -:HEADERS $(libjsoninclude_HEADERS) \
  49. -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
  50. > $@