Skip to content

Instantly share code, notes, and snippets.

Created February 17, 2009 20:59
Show Gist options
  • Save anonymous/65969 to your computer and use it in GitHub Desktop.
Save anonymous/65969 to your computer and use it in GitHub Desktop.
package {
import flash.display.*;
public class Main extends MovieClip {
public function Main() {
trace("Flash");
}
}
}
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