acme/testing/Makefile
2024-02-16 01:06:48 +00:00

27 lines
310 B
Makefile

.SILENT:
.PHONY: cpus errors warnings
all: bugfixes cpus errors warnings
bugfixes:
echo "Testing bugfixes..."
echo
make -C bugfixes
cpus:
echo "Testing CPUs..."
echo
make -C cpus
errors:
echo "Testing errors..."
echo
make -C errors
warnings:
echo "Testing warnings..."
echo
make -C warnings