
SUBDIRS = src

all:
	@for i in $(SUBDIRS); do (cd $$i; make $@) done

clean:
	@for i in $(SUBDIRS); do (cd $$i; make $@) done
