Created
October 20, 2012 02:04
-
-
Save brettchalupa/3921706 to your computer and use it in GitHub Desktop.
Makefile for compiling AS3 into SWFs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MXMLC = ~/../../Library/flex_sdk_4.6.0.23201B/bin/mxmlc | |
SRC = src/ | |
MAIN = src/Main.as | |
SWF = bin/file_name.swf | |
$(SWF) : $(SRC) | |
$(MXMLC) -o $(SWF) -static-link-runtime-shared-libraries -- $(MAIN) | |
run : $(SWF) | |
open $(SWF) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment