15 lines
198 B
Makefile
15 lines
198 B
Makefile
BASE = $(PWD)
|
|
MXMLC ?= mxmlc
|
|
SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml))
|
|
|
|
|
|
%.swf : %.mxml
|
|
$(MXMLC) $< -warnings -output $@
|
|
|
|
|
|
all: $(SWFS)
|
|
|
|
|
|
clean:
|
|
find -name \*.swf -exec rm {} \;
|