Makefile.am 420 B

1234567891011121314151617181920212223242526
  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. check_PROGRAMS = $(TESTS)
  16. replace__str_replace_all_SOURCES = \
  17. replace__str_replace_all.c
  18. parse_integer_SOURCES = \
  19. parse_integer.c