include Rules.mk

all:
	for i in Lab0*;			\
    	do				\
	    if test -d "$$i"; then	\
		(cd "$$i"; $(MAKE));	\
	    fi;				\
	done
