2012-02-14 08:50:34 -05:00
|
|
|
###################################################
|
|
|
|
#
|
|
|
|
# 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:
|
2012-03-09 04:39:48 -05:00
|
|
|
CC_OPTIONS = -s -ggdb -D_DEBUG
|
|
|
|
CCE_OPTIONS = -s -x c -ggdb -D_DEBUG
|
2012-02-14 08:50:34 -05:00
|
|
|
LNK_OPTIONS = -lstdc++ -pthread -ggdb
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include makefile_base
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|