box-o-sand/Makefile

15 lines
198 B
Makefile
Raw Normal View History

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