box-o-sand/Makefile

11 lines
145 B
Makefile
Raw Normal View History

BASE = $(PWD)
MXMLC ?= mxmlc
SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml))
%.swf : %.mxml
$(MXMLC) $< -output $@
2010-02-18 18:41:29 +00:00
all: $(SWFS)