Makefile.am 859 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. AM_CFLAGS = -I$(top_srcdir)/lib/vfs $(GLIB_CFLAGS) -I$(top_srcdir) @CHECK_CFLAGS@ \
  2. -DTEST_SHARE_DIR=\"$(abs_srcdir)\" -z muldefs
  3. AM_LDFLAGS = -z muldefs
  4. LIBS=@CHECK_LIBS@ \
  5. $(top_builddir)/lib/libmc.la
  6. TESTS = \
  7. canonicalize_pathname \
  8. current_dir \
  9. path_recode \
  10. path_serialize \
  11. vfs_parse_ls_lga \
  12. vfs_path_string_convert \
  13. vfs_prefix_to_class \
  14. vfs_split \
  15. vfs_s_get_path
  16. check_PROGRAMS = $(TESTS)
  17. canonicalize_pathname_SOURCES = \
  18. canonicalize_pathname.c
  19. current_dir_SOURCES = \
  20. current_dir.c
  21. path_recode_SOURCES = \
  22. path_recode.c
  23. path_serialize_SOURCES = \
  24. path_serialize.c
  25. vfs_split_SOURCES = \
  26. vfs_split.c
  27. vfs_parse_ls_lga_SOURCES = \
  28. vfs_parse_ls_lga.c
  29. vfs_prefix_to_class_SOURCES = \
  30. vfs_prefix_to_class.c
  31. vfs_path_string_convert_SOURCES = \
  32. vfs_path_string_convert.c
  33. vfs_s_get_path_SOURCES = \
  34. vfs_s_get_path.c