pref.mk 253 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
  8. @echo OK