Makefile.am 664 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ## Process this file with automake to produce Makefile.in
  2. AM_CPPFLAGS = \
  3. -DADMINDIR=\"$(admindir)\" \
  4. -idirafter $(top_srcdir)/lib/compat \
  5. -I$(top_builddir) \
  6. -I$(top_srcdir)/lib
  7. LDADD = \
  8. $(top_builddir)/lib/dpkg/libdpkg.la \
  9. $(LIBINTL)
  10. # The tests are sorted in order of increasing complexity.
  11. check_PROGRAMS = \
  12. t-test \
  13. t-test-skip \
  14. t-macros \
  15. t-error \
  16. t-string \
  17. t-buffer \
  18. t-path \
  19. t-progname \
  20. t-subproc \
  21. t-command \
  22. t-varbuf \
  23. t-ar \
  24. t-deb-version \
  25. t-arch \
  26. t-version \
  27. t-pkginfo \
  28. t-pkg-list \
  29. t-pkg-queue \
  30. t-trigger \
  31. t-mod-db
  32. TEST_PREFIX = $(builddir)
  33. test_cases = $(check_PROGRAMS)
  34. include $(top_srcdir)/check.am