Makefile.am 527 B

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