So I was playing around with Test::Inline, and wanted to integrate it with the little Makefile I use to ease my development.
Finally figured out this:
pod_tests: lib/*.pm $(foreach file,$?,pod2test $(file) t/$(notdir $(file)).t ;)
test: pod_tests perl -I$(LIB) -MTest::Harness -e 'runtests(@ARGV)' t/*.t