Created
February 17, 2009 20:59
-
-
Save anonymous/65969 to your computer and use it in GitHub Desktop.
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
package { | |
import flash.display.*; | |
public class Main extends MovieClip { | |
public function Main() { | |
trace("Flash"); | |
} | |
} | |
} |
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 = mxmlc | |
MFLAGS = -debug=true | |
TARGETS = *.swf | |
all: $(TARGETS) | |
clean: | |
$(RM) $(TARGETS) | |
.SUFFIXES: .as .swf | |
.as.swf: | |
$(MXMLC) $(MFLAGS) $< |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment