makefile 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # -*- make -*-
  2. BASE=../..
  3. SUBDIR=test/interactive-helper
  4. APT_DOMAIN=none
  5. # Bring in the default rules
  6. include ../../buildlib/defaults.mak
  7. # Program for testing methods
  8. PROGRAM=mthdcat
  9. SLIBS =
  10. SOURCE = mthdcat.cc
  11. include $(PROGRAM_H)
  12. # Program for testing the tar/deb extractor
  13. PROGRAM=testdeb
  14. SLIBS = -lapt-pkg -lapt-inst
  15. LIB_MAKES = apt-pkg/makefile apt-inst/makefile
  16. SOURCE = testdeb.cc
  17. include $(PROGRAM_H)
  18. # Program for testing tar extraction
  19. PROGRAM=extract-control
  20. SLIBS = -lapt-pkg -lapt-inst
  21. LIB_MAKES = apt-pkg/makefile apt-inst/makefile
  22. SOURCE = extract-control.cc
  23. include $(PROGRAM_H)
  24. # Program for testing udevcdrom
  25. PROGRAM=test_udevcdrom
  26. SLIBS = -lapt-pkg
  27. LIB_MAKES = apt-pkg/makefile
  28. SOURCE = test_udevcdrom.cc
  29. include $(PROGRAM_H)
  30. # Program for checking rpm versions
  31. #PROGRAM=rpmver
  32. #SLIBS = -lapt-pkg -lrpm
  33. #SOURCE = rpmver.cc
  34. #include $(PROGRAM_H)