makefile 920 B

123456789101112131415161718192021222324252627282930
  1. #*************************************************************************/
  2. #* This file is part of: */
  3. #* GODOT ENGINE */
  4. #* http://www.godotengine.org */
  5. #*************************************************************************/
  6. # Simple makefile to give support for external C/C++ IDEs */
  7. #*************************************************************************/
  8. # Default build
  9. all: debug
  10. # Release Build
  11. release:
  12. scons target="release" bin/godot
  13. # Profile Build
  14. profile:
  15. scons target="profile" bin/godot
  16. # Debug Build
  17. debug:
  18. # Debug information (code size gets severely affected):
  19. # g: Default (same as g2)
  20. # g0: no debug info
  21. # g1: minimal info
  22. # g3: maximal info
  23. scons target="debug" CCFLAGS="-g" bin/godot
  24. clean:
  25. scons -c bin/godot