Blame Makefile

nsz 7308b3
DIRS = $(sort $(wildcard src/*))
nsz 7308b3
nsz 8f27a3
all:
nsz 1b83d1
	for i in $(DIRS); do printf "%-20s" $$i; make -s -C $$i; done
nsz 1b83d1
t:
nsz d28968
	@for i in $(DIRS); do printf "%-20s" $$i; make -s -C $$i t 2>/dev/null || echo 'BUILD FAIL'; $$i/t; done
nsz 1b83d1
b: t
nsz 1b83d1
	@for i in $(DIRS); do echo $$i; $$i/b; done
nsz 8f27a3
clean:
nsz 8f27a3
	for i in $(DIRS); do make -s -C $$i clean; done