Removed old makefile; use GNUmakefile instead
git-svn-id: http://mc-server.googlecode.com/svn/trunk@792 0a769ca7-a7f5-676a-18bf-c427514a06d6master
parent
a83420491f
commit
c00db32b78
|
@ -1,7 +1,6 @@
|
|||
COMPILING
|
||||
=========
|
||||
|
||||
To compile MCServer on *nix, either:
|
||||
1, Use GNU-compatible make (with GNUmakefile) directly, as described in the GNUmakefile header
|
||||
2, Copy makefile.debug or makefile.release as makefile and use any make-system
|
||||
3, Use "make -f makefile.debug" or "make -f makefile.release", if your make system accepts "-f <filename>" parameter
|
||||
To compile MCServer on *nix, you need a GNUmake-compatible make that reads GNUmakefile.
|
||||
Run "make" to build a debug version (slow, but gives more info on crash)
|
||||
Run "make release=1" to build a release version (fast, less info on crash)
|
|
@ -1,25 +0,0 @@
|
|||
###################################################
|
||||
#
|
||||
# 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 -D_DEBUG
|
||||
CCE_OPTIONS = -s -x c -ggdb -D_DEBUG
|
||||
LNK_OPTIONS = -lstdc++ -pthread -ggdb
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
include makefile_base
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
###################################################
|
||||
#
|
||||
# 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
|
||||
|
||||
|
||||
|
||||
|
1744
makefile_base
1744
makefile_base
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue