The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Whatever it is you want to do, it should be handled by the main
# (parent) Makefile. So reissue make from there.
PHONY=check all

#: Default target - the parent's testing or "check" target
all:
	$(MAKE) -C .. -f Makefile check

#: Whatever it is you want to do, it should be handled by the parent
%:
	$(MAKE) -C .. -f Makefile $@