46df5ee331
git-svn-id: http://mc-server.googlecode.com/svn/trunk@259 0a769ca7-a7f5-676a-18bf-c427514a06d6
25 lines
555 B
Plaintext
25 lines
555 B
Plaintext
###################################################
|
|
#
|
|
# Makefile template for MCServer
|
|
# This makefile makes the release version of MCServer (no symbols, more optimizations)
|
|
# To use this file, either copy it as makefile or run "make -f makefile.release"
|
|
#
|
|
# Do NOT add file dependencies here, add them to makefile_base instead
|
|
#
|
|
###################################################
|
|
|
|
|
|
|
|
# _X: these settings should be used for the release build:
|
|
CC_OPTIONS = -s -O3
|
|
CCE_OPTIONS = -s -x c -O3
|
|
LNK_OPTIONS = -lstdc++ -pthread -O3
|
|
|
|
|
|
|
|
include makefile_base
|
|
|
|
|
|
|
|
|