Last active
December 10, 2015 18:18
-
-
Save mattrobenolt/4473290 to your computer and use it in GitHub Desktop.
Compiling Actionscript files to swf with the Flex SDK using a Makefile
This file contains hidden or 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=/usr/local/Cellar/flex_sdk/4.6.0.23201/libexec/bin/mxmlc | |
all: HelloWorld.swf | |
.as.swf: | |
$(MXMLC) --static-link-runtime-shared-libraries=true -o $@ $< | |
.PHONY: all | |
.SUFFIXES: .as .swf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment