Makefile 179 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);)
  6. .PHONY: compilecheck test