BUILDORDER:= fb dskeyboard dsdictionary

all:
	@for i in $(BUILDORDER); do if test -e $$i/Makefile ; then $(MAKE) -C $$i && $(MAKE) -C $$i deploy_local || break; fi; done;
	
#---------------------------------------------------------------------------------
clean:
#---------------------------------------------------------------------------------
	@rm -fr libraries dsdictionary.nds
	@for i in $(BUILDORDER); do if test -e $$i/Makefile ; then $(MAKE)  -C $$i clean; fi; done;
