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)