makefile 645 B

1234567891011121314151617181920212223242526272829303132333435
  1. # -*- make -*-
  2. BASE=..
  3. SUBDIR=cmdline
  4. # Bring in the default rules
  5. include ../buildlib/defaults.mak
  6. # The apt-cache program
  7. PROGRAM=apt-cache
  8. SLIBS = -lapt-pkg
  9. LIB_MAKES = apt-pkg/makefile
  10. SOURCE = apt-cache.cc
  11. include $(PROGRAM_H)
  12. # The apt-get program
  13. PROGRAM=apt-get
  14. SLIBS = -lapt-pkg
  15. LIB_MAKES = apt-pkg/makefile
  16. SOURCE = apt-get.cc acqprogress.cc
  17. include $(PROGRAM_H)
  18. # The apt-config program
  19. PROGRAM=apt-config
  20. SLIBS = -lapt-pkg
  21. LIB_MAKES = apt-pkg/makefile
  22. SOURCE = apt-config.cc
  23. include $(PROGRAM_H)
  24. # The apt-cdrom program
  25. PROGRAM=apt-cdrom
  26. SLIBS = -lapt-pkg
  27. LIB_MAKES = apt-pkg/makefile
  28. SOURCE = apt-cdrom.cc
  29. include $(PROGRAM_H)