box-o-sand/Makefile
2010-02-18 14:23:01 -05:00

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 {} \;