makefile 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # -*- make -*-
  2. BASE=../..
  3. SUBDIR=test/interactive-helper
  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. # Version compare tester
  12. PROGRAM=testextract
  13. SLIBS = -lapt-pkg -lapt-inst
  14. LIB_MAKES = apt-pkg/makefile apt-inst/makefile
  15. SOURCE = testextract.cc
  16. include $(PROGRAM_H)
  17. # Program for testing the tar/deb extractor
  18. PROGRAM=testdeb
  19. SLIBS = -lapt-pkg -lapt-inst
  20. SOURCE = testdeb.cc
  21. include $(PROGRAM_H)
  22. # Program for testing tar extraction
  23. PROGRAM=extract-control
  24. SLIBS = -lapt-pkg -lapt-inst
  25. SOURCE = extract-control.cc
  26. include $(PROGRAM_H)
  27. # Program for testing udevcdrom
  28. PROGRAM=test_udevcdrom
  29. SLIBS = -lapt-pkg
  30. SOURCE = test_udevcdrom.cc
  31. include $(PROGRAM_H)
  32. # Program for checking rpm versions
  33. #PROGRAM=rpmver
  34. #SLIBS = -lapt-pkg -lrpm
  35. #SOURCE = rpmver.cc
  36. #include $(PROGRAM_H)