From bd8fb22df19211750526b140626e08a5296493cf Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Thu, 18 Feb 2010 13:25:32 -0500 Subject: [PATCH] adding yahoo weather thingy --- src/03-yahoo-weather/Makefile | 12 ++++++ src/03-yahoo-weather/YahooWeather.mxml | 51 ++++++++++++++++++++++++++ src/Makefile | 3 +- 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 src/03-yahoo-weather/Makefile create mode 100644 src/03-yahoo-weather/YahooWeather.mxml diff --git a/src/03-yahoo-weather/Makefile b/src/03-yahoo-weather/Makefile new file mode 100644 index 0000000..19062e0 --- /dev/null +++ b/src/03-yahoo-weather/Makefile @@ -0,0 +1,12 @@ +MXMLC ?= mxmlc + + +all: YahooWeather.swf + + +YahooWeather.swf: YahooWeather.mxml + $(MXMLC) YahooWeather.mxml + + +clean: + rm -f *.swf diff --git a/src/03-yahoo-weather/YahooWeather.mxml b/src/03-yahoo-weather/YahooWeather.mxml new file mode 100644 index 0000000..8d4ab52 --- /dev/null +++ b/src/03-yahoo-weather/YahooWeather.mxml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Makefile b/src/Makefile index 4e6eec0..2f39e65 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,4 +2,5 @@ all: cd 01-flickr && $(MAKE) && cd .. && \ - cd 02-shipping && $(MAKE) + cd 02-shipping && $(MAKE) && cd .. && \ + cd 03-yahoo-weather && $(MAKE)