2010-02-18 19:18:09 +00:00
|
|
|
BASE = $(PWD)
|
|
|
|
MXMLC ?= mxmlc
|
|
|
|
SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml))
|
2010-02-18 02:48:47 +00:00
|
|
|
|
|
|
|
|
2010-02-18 19:18:09 +00:00
|
|
|
%.swf : %.mxml
|
|
|
|
$(MXMLC) $< -output $@
|
2010-02-18 18:41:29 +00:00
|
|
|
|
|
|
|
|
2010-02-18 19:18:09 +00:00
|
|
|
all: $(SWFS)
|
2010-02-18 19:18:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
find -name \*.swf -exec rm {} \;
|