makefile 314 B

12345678910111213141516171819
  1. # -*- make -*-
  2. BASE=..
  3. SUBDIR=test
  4. # Bring in the default rules
  5. include ../buildlib/defaults.mak
  6. # Program to test the File Filter
  7. PROGRAM=fftest
  8. SLIBS = -ldsync
  9. SOURCE = fftest.cc
  10. include $(PROGRAM_H)
  11. # Program to test the File Filter
  12. PROGRAM=pathtest
  13. SLIBS = -ldsync
  14. SOURCE = pathtest.cc
  15. include $(PROGRAM_H)