makefile 856 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. # Program for testing the tar/deb extractor
  12. PROGRAM=testdeb
  13. SLIBS = -lapt-pkg -lapt-inst
  14. LIB_MAKES = apt-pkg/makefile apt-inst/makefile
  15. SOURCE = testdeb.cc
  16. include $(PROGRAM_H)
  17. # Program for testing tar extraction
  18. PROGRAM=extract-control
  19. SLIBS = -lapt-pkg -lapt-inst
  20. LIB_MAKES = apt-pkg/makefile apt-inst/makefile
  21. SOURCE = extract-control.cc
  22. include $(PROGRAM_H)
  23. # Program for testing udevcdrom
  24. PROGRAM=test_udevcdrom
  25. SLIBS = -lapt-pkg
  26. LIB_MAKES = apt-pkg/makefile
  27. SOURCE = test_udevcdrom.cc
  28. include $(PROGRAM_H)
  29. # Program for checking rpm versions
  30. #PROGRAM=rpmver
  31. #SLIBS = -lapt-pkg -lrpm
  32. #SOURCE = rpmver.cc
  33. #include $(PROGRAM_H)