GRRLIB/examples/Makefile

14 lines
407 B
Makefile
Raw Normal View History

2009-02-13 20:44:54 +00:00
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=.svn -cvjf wii-examples-$(DATESTRING).tar.bz2 *