Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. MXMLC_PROG = ~/.flex/bin/mxmlc
  2. INPUT = HelloWorld.as
  3. OUTPUT = out.swf
  4.  
  5. COMMON_ARGS = -compiler.optimize \
  6. -static-link-runtime-shared-libraries=true \
  7. -default-background-color 0x0e0f0e \
  8. -managers flash.fonts.BatikFontManager \
  9. -target-player 10.0.0 \
  10. -compiler.keep-generated-actionscript=false \
  11. -compiler.include-libraries src/assets/googlemaps/map_1_19a.swc
  12.  
  13. debug:
  14.  
  15. $(MXMLC_PROG) $(COMMON_ARGS) \
  16. -compiler.omit-trace-statements=false \
  17. -compiler.incremental \
  18. -compiler.debug=true \
  19. $(INPUT) \
  20. -o $(OUTPUT)
  21.  
  22. release:
  23.  
  24. $(MXMLC_PROG) $(COMMON_ARGS) \
  25. -compiler.omit-trace-statements=true \
  26. -compiler.accessible=false \
  27. -compiler.debug=false \
  28. $(INPUT) \
  29. -o $(OUTPUT)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement