adding ipc example and drastically simplifying makefile crap

This commit is contained in:
Dan Buch
2010-02-18 14:18:09 -05:00
parent 119cc1a0a9
commit 0eaf4d8cfd
6 changed files with 54 additions and 64 deletions

View File

@@ -1,12 +1,10 @@
PROJECTS = $(wildcard ./[0-9]*-*)
BASE = $(PWD)
MXMLC ?= mxmlc
SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml))
all:
@for project in $(PROJECTS) ; \
do \
cd $$project && $(MAKE) && cd .. ; \
done
%.swf : %.mxml
$(MXMLC) $< -output $@
clean:
find -name \*.swf -exec rm {} \;
all: $(SWFS)