diff options
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..daae52c --- /dev/null +++ b/Rakefile @@ -0,0 +1,9 @@ +# Replace this with the path to the mxmlc executable in the Flex SDK. +MXMLC = '/Developer/SDKs/flex_sdk_4.0.0.14159/bin/mxmlc' + +task :default => "da.swf" + +desc "build the dynamicaudio SWF" +file "da.swf" => "dynamicaudio.as" do + sh %[ #{MXMLC} -use-network=false -o da.swf -file-specs "dynamicaudio.as" ] +end |
