makefile 442 B

12345678910111213141516171819202122232425
  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. SOURCE = scratch.cc
  15. include $(PROGRAM_H)
  16. # Version compare tester
  17. PROGRAM=versiontest
  18. SLIBS = -lapt-pkg
  19. SOURCE = versiontest.cc
  20. include $(PROGRAM_H)