makefile 633 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- make -*-
  2. BASE=..
  3. SUBDIR=test
  4. # Bring in the default rules
  5. include ../buildlib/defaults.mak
  6. # Program for testing methods
  7. PROGRAM=mthdcat
  8. SLIBS =
  9. SOURCE = mthdcat.cc
  10. include $(PROGRAM_H)
  11. # Scratch program to test incomplete code fragments in
  12. PROGRAM=scratch-test
  13. SLIBS = -lapt-pkg
  14. LIB_MAKES = apt-pkg/makefile
  15. SOURCE = scratch.cc
  16. include $(PROGRAM_H)
  17. # Version compare tester
  18. PROGRAM=versiontest
  19. SLIBS = -lapt-pkg
  20. LIB_MAKES = apt-pkg/makefile
  21. SOURCE = versiontest.cc
  22. include $(PROGRAM_H)
  23. # Version compare tester
  24. PROGRAM=srcrfind
  25. SLIBS = -lapt-pkg
  26. LIB_MAKES = apt-pkg/makefile
  27. SOURCE = srcrfind.cc
  28. include $(PROGRAM_H)