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