GRRLIB/examples/Makefile
2009-02-13 20:44:54 +00:00

13 lines
408 B
Makefile

SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
DATESTRING := $(shell date +%Y)$(shell date +%m)$(shell date +%d)
all:
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
clean:
@rm -f *.bz2
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
dist: clean
@tar --exclude=*CVS* -cvjf wii-examples-$(DATESTRING).tar.bz2 *