Makefile.am 569 B

123456789101112131415161718192021222324252627282930
  1. ## Process this file with automake to produce Makefile.in
  2. INCLUDES = \
  3. -idirafter $(top_srcdir)/libcompat \
  4. -I$(top_srcdir)/lib
  5. # The tests are sorted in order of increasing complexity.
  6. check_PROGRAMS = \
  7. t-test \
  8. t-macros \
  9. t-string \
  10. t-path \
  11. t-varbuf \
  12. t-version \
  13. t-pkginfo
  14. CHECK_LDADD = ../libdpkg.a
  15. t_macros_LDADD = $(CHECK_LDADD)
  16. t_path_LDADD = $(CHECK_LDADD)
  17. t_pkginfo_LDADD = $(CHECK_LDADD)
  18. t_string_LDADD = $(CHECK_LDADD)
  19. t_test_LDADD = $(CHECK_LDADD)
  20. t_varbuf_LDADD = $(CHECK_LDADD)
  21. t_version_LDADD = $(CHECK_LDADD)
  22. TESTS = $(check_PROGRAMS)