Makefile.am 470 B

123456789101112131415161718192021222324252627282930313233
  1. PACKAGE_STRING = "/lib/strutil"
  2. AM_CPPFLAGS = \
  3. $(GLIB_CFLAGS) \
  4. -I$(top_srcdir) \
  5. @CHECK_CFLAGS@
  6. LIBS = @CHECK_LIBS@ \
  7. $(top_builddir)/lib/libmc.la
  8. if ENABLE_MCLIB
  9. LIBS += $(GLIB_LIBS)
  10. endif
  11. TESTS = \
  12. parse_integer \
  13. str_replace_all \
  14. str_verscmp \
  15. filevercmp
  16. check_PROGRAMS = $(TESTS)
  17. parse_integer_SOURCES = \
  18. parse_integer.c
  19. str_replace_all_SOURCES = \
  20. str_replace_all.c
  21. str_verscmp_SOURCES = \
  22. str_verscmp.c
  23. filevercmp_SOURCES = \
  24. filevercmp.c