SWFS := A.swf B-0.swf B-1.swf

all: $(SWFS)

A.swf: A.as
	mxmlc -debug -output $@ $^

B-0.swf: B.as
	mtasc -strict -version 7 -swf $@ -main -header 550:400:31 $^

B-1.swf: B.as
	mtasc -strict -version 8 -swf $@ -main -header 550:400:31 $^

clean:
	rm -f $(SWFS)
