cord.am 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ## This file is processed with automake.
  2. # Info (current:revision:age) for the Libtool versioning system.
  3. # These numbers should be updated at most once just before the release,
  4. # and, optionally, at most once during the development (after the release).
  5. LIBCORD_VER_INFO = 6:0:5
  6. lib_LTLIBRARIES += libcord.la
  7. libcord_la_LIBADD = libgc.la
  8. libcord_la_LDFLAGS = -version-info $(LIBCORD_VER_INFO) -no-undefined
  9. libcord_la_CPPFLAGS = $(AM_CPPFLAGS)
  10. libcord_la_SOURCES = \
  11. cord/cordbscs.c \
  12. cord/cordprnt.c \
  13. cord/cordxtra.c
  14. TESTS += cordtest$(EXEEXT)
  15. check_PROGRAMS += cordtest
  16. cordtest_SOURCES = cord/tests/cordtest.c
  17. cordtest_LDADD = $(top_builddir)/libcord.la
  18. ## In case of static libraries build, libgc.a is already referenced in
  19. ## dependency_libs attribute of libcord.la file.
  20. if ENABLE_SHARED
  21. cordtest_LDADD += $(top_builddir)/libgc.la
  22. endif
  23. EXTRA_DIST += \
  24. cord/tests/de.c \
  25. cord/tests/de_cmds.h \
  26. cord/tests/de_win.c \
  27. cord/tests/de_win.h \
  28. cord/tests/de_win.rc
  29. pkginclude_HEADERS += \
  30. include/gc/cord.h \
  31. include/gc/cord_pos.h \
  32. include/gc/ec.h