box-o-sand/Makefile

11 lines
145 B
Makefile

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