summaryrefslogtreecommitdiffstats
path: root/makefile.debug
diff options
context:
space:
mode:
Diffstat (limited to 'makefile.debug')
-rw-r--r--makefile.debug25
1 files changed, 25 insertions, 0 deletions
diff --git a/makefile.debug b/makefile.debug
new file mode 100644
index 000000000..e7d8b90d3
--- /dev/null
+++ b/makefile.debug
@@ -0,0 +1,25 @@
+###################################################
+#
+# Makefile template for MCServer
+# This makefile makes the debug version of MCServer (with gdb symbols, little to no optimizations)
+# To use this file, either copy it as makefile or run "make -f makefile.debug"
+#
+# Do NOT add file dependencies here, add them to makefile_base instead
+#
+###################################################
+
+
+# _X: These settings produce a debug build, with gdb symbols:
+CC_OPTIONS = -s -ggdb
+CCE_OPTIONS = -s -x c -ggdb
+LNK_OPTIONS = -lstdc++ -pthread -ggdb
+
+
+
+
+
+include makefile_base
+
+
+
+