46df5ee331
git-svn-id: http://mc-server.googlecode.com/svn/trunk@259 0a769ca7-a7f5-676a-18bf-c427514a06d6
26 lines
575 B
Plaintext
26 lines
575 B
Plaintext
###################################################
|
|
#
|
|
# 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
|
|
|
|
|
|
|
|
|