Makefile 192 B

12345678
  1. test: compilecheck
  2. prove -mv t/*.t
  3. FILES2CHECK := $(shell find lib/ -name '*.pm')
  4. compilecheck:
  5. $(foreach FILE,$(FILES2CHECK),perl -Ilib -c $(FILE) &&) /bin/true
  6. .PHONY: compilecheck test