box-o-sand/Makefile

25 lines
577 B
Makefile
Raw Normal View History

# sets mxmlc to just the basename "mxmlc"
# if not overridden in command line like so:
# make MXMLC=/path/to/my/mxmlc
MXMLC ?= mxmlc
# define all target swf paths (which don't yet exist if
# they've never been built)
SWFS = $(patsubst %.mxml,%.swf,$(wildcard [0-9]*-*/*.mxml))
# define an implicit build rule for any file matching %.swf,
# using the $< (input) and $@ (output) automatic variables
%.swf : %.mxml
2010-02-18 19:23:01 +00:00
$(MXMLC) $< -warnings -output $@
2010-02-18 18:41:29 +00:00
# build all expected swf files
all: $(SWFS)
2010-02-18 19:18:41 +00:00
# remove all swf files in the tree
2010-02-18 19:18:41 +00:00
clean:
find -name \*.swf -exec rm {} \;