Blame Makefile

nsz 7308b3
DIRS = $(sort $(wildcard src/*))
nsz 7308b3
nsz 8f27a3
all:
nsz 1ee020
	for i in $(DIRS); do printf "%-20s\n" $$i; make -s -C $$i; done
nsz 462b4f
run:
nsz 462b4f
	for i in $(DIRS); do printf "%-20s" $$i; make -s -C $$i run; done
nsz 8f27a3
clean:
nsz 8f27a3
	for i in $(DIRS); do make -s -C $$i clean; done