summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index d24bd0cd32..0000000000
--- a/makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-#*************************************************************************/
-#* This file is part of: */
-#* GODOT ENGINE */
-#* http://www.godotengine.org */
-#*************************************************************************/
-# Simple makefile to give support for external C/C++ IDEs */
-#*************************************************************************/
-
-# Default build
-all: debug
-
-# Release Build
-release:
- scons target="release" bin/godot
-
-# Profile Build
-profile:
- scons target="profile" bin/godot
-
-# Debug Build
-debug:
- # Debug information (code size gets severely affected):
- # g: Default (same as g2)
- # g0: no debug info
- # g1: minimal info
- # g3: maximal info
- scons target="debug" CCFLAGS="-g" bin/godot
-
-clean:
- scons -c bin/godot