Makefile.am 545 B

123456789101112131415161718192021222324252627282930
  1. EXTRA_DIST = jansson.def
  2. include_HEADERS = jansson.h
  3. nodist_include_HEADERS = jansson_config.h
  4. lib_LTLIBRARIES = libjansson.la
  5. libjansson_la_SOURCES = \
  6. dump.c \
  7. error.c \
  8. hashtable.c \
  9. hashtable.h \
  10. hashtable_seed.c \
  11. jansson_private.h \
  12. load.c \
  13. lookup3.h \
  14. memory.c \
  15. pack_unpack.c \
  16. strbuffer.c \
  17. strbuffer.h \
  18. strconv.c \
  19. utf.c \
  20. utf.h \
  21. value.c \
  22. version.c
  23. libjansson_la_LDFLAGS = \
  24. -no-undefined \
  25. -export-symbols-regex '^json_|^jansson_' \
  26. -version-info 18:0:14 \
  27. @JSON_SYMVER_LDFLAGS@ \
  28. @JSON_BSYMBOLIC_LDFLAGS@