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 778 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. AM_CFLAGS = -Wall -std=gnu99 -D_GNU_SOURCE -D_REENTRANT
  2. EXTRA_DIST = doc
  3. lib_LTLIBRARIES = libjson.la
  4. pkgconfigdir = $(libdir)/pkgconfig
  5. pkgconfig_DATA = json.pc
  6. libjsonincludedir = $(includedir)/json
  7. libjsoninclude_HEADERS = \
  8. json.h \
  9. bits.h \
  10. debug.h \
  11. linkhash.h \
  12. arraylist.h \
  13. printbuf.h \
  14. json_util.h \
  15. json_object.h \
  16. json_object_private.h \
  17. json_tokener.h
  18. libjson_la_LDFLAGS = -version-info 0:1:0
  19. libjson_la_SOURCES = \
  20. arraylist.c \
  21. debug.c \
  22. json_object.c \
  23. json_tokener.c \
  24. json_util.c \
  25. linkhash.c \
  26. printbuf.c
  27. check_PROGRAMS = test1 test2 test3
  28. test1_SOURCES = test1.c
  29. test1_LDADD = $(lib_LTLIBRARIES)
  30. test2_SOURCES = test2.c
  31. test2_LDADD = $(lib_LTLIBRARIES)
  32. test3_SOURCES = test3.c
  33. test3_LDADD = $(lib_LTLIBRARIES)

No Description

Contributors (1)