pref.mk 257 B

123456789101112
  1. ################################################################
  2. # Common part of all test Makefiles (prefix part)
  3. LIBS = ../src/$(LIBFILE)
  4. tests: $(TESTS)
  5. @
  6. check: $(TESTS)
  7. @for t in $(TESTS); do echo "Running $$t..."; ./$$t || exit 1; done
  8. @echo OK