makefile 301 B

1234567891011121314151617181920
  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)