all: @echo "There's nothing to build here except the tests." @echo @echo "Try: make test" runtests: $(MAKE) -C sh runtests $(MAKE) -C python runtests $(MAKE) -C dotnet runtests $(MAKE) -C cpp runtests test: ./wvtestrun $(MAKE) runtests clean:: rm -f *~ .*~ $(MAKE) -C sh clean $(MAKE) -C python clean $(MAKE) -C dotnet clean $(MAKE) -C cpp clean