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

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

No Description

Contributors (1)