summaryrefslogtreecommitdiffstats
path: root/makefile.release
blob: db5d781a4bf31ca1b140835501234166ad32e5d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
###################################################
#
# 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