
ALL:=   $(shell file * | egrep -w 'perl|Perl|Perl5' | awk '{print $$1}' | perl -ne 's/://; print if !/.(bak|tdy|ERR)$$|^torus-sed$$/' | sort)

perlcheck:
	${MAKE} _perlcheck 2>/dev/null || ${MAKE} _perlcheck

_perlcheck:
	@echo "Check perl modules/scripts: ${ALL}"
	@echo ${ALL} | xargs -n1 -P2 -E " " perl -I. -I../bin -cw


test-usi-targets.html: test-usi-targets
	pod2html $? > $@
	rm -f pod2htm?.tmp

clean:
	rm -f test-usi-targets.html

