ADIRS=./*
MAKE = make
app:
@for DIRS in apps/$(ADIRS);do \
(cd $${DIRS}; $(MAKE) app ) \
done\
clean:
(cd $${DIRS}; rm *.o ) \