13 lines
115 B
Makefile
13 lines
115 B
Makefile
|
MXMLC ?= mxmlc
|
||
|
|
||
|
|
||
|
all: PlainText.swf
|
||
|
|
||
|
|
||
|
PlainText.swf: PlainText.mxml
|
||
|
$(MXMLC) PlainText.mxml
|
||
|
|
||
|
|
||
|
clean:
|
||
|
rm -f *.swf
|