Makefile.am 846 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. PACKAGE_STRING = "/lib/search"
  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. glob_prepare_replace_str \
  14. glob_translate_to_regex \
  15. hex_translate_to_regex \
  16. regex_replace_esc_seq \
  17. regex_process_escape_sequence \
  18. translate_replace_glob_to_regex
  19. check_PROGRAMS = $(TESTS)
  20. glob_prepare_replace_str_SOURCES = \
  21. glob_prepare_replace_str.c
  22. regex_replace_esc_seq_SOURCES = \
  23. regex_replace_esc_seq.c
  24. regex_process_escape_sequence_SOURCES = \
  25. regex_process_escape_sequence.c
  26. translate_replace_glob_to_regex_SOURCES = \
  27. translate_replace_glob_to_regex.c
  28. glob_translate_to_regex_SOURCES = \
  29. glob_translate_to_regex.c
  30. hex_translate_to_regex_SOURCES = \
  31. hex_translate_to_regex.c