makefile 390 B

1234567891011121314151617181920212223242526
  1. # -*- make -*-
  2. BASE=..
  3. SUBDIR=methods
  4. # Bring in the default rules
  5. include ../buildlib/defaults.mak
  6. BIN := $(BIN)/methods
  7. # The file method
  8. PROGRAM=file
  9. SLIBS = -lapt-pkg
  10. SOURCE = file.cc
  11. include $(PROGRAM_H)
  12. # The copy method
  13. PROGRAM=copy
  14. SLIBS = -lapt-pkg
  15. SOURCE = copy.cc
  16. include $(PROGRAM_H)
  17. # The gzip method
  18. PROGRAM=gzip
  19. SLIBS = -lapt-pkg
  20. SOURCE = gzip.cc
  21. include $(PROGRAM_H)