diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-14 14:50:34 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-14 14:50:34 +0100 |
commit | 46df5ee3315f9bfa6bd5ded0436c9e729ec10f38 (patch) | |
tree | 7ec65a7b17be9922081e40ae31579960ab317b76 /makefile_base | |
parent | makefile: fixed linux build using traditional makefile - added missing sources (diff) | |
download | cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.tar cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.tar.gz cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.tar.bz2 cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.tar.lz cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.tar.xz cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.tar.zst cuberite-46df5ee3315f9bfa6bd5ded0436c9e729ec10f38.zip |
Diffstat (limited to '')
-rw-r--r-- | makefile_base (renamed from makefile) | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/makefile b/makefile_base index ecc035092..650666b41 100644 --- a/makefile +++ b/makefile_base @@ -1,31 +1,15 @@ ################################################### # -# Makefile for MCServer -# Creator [Xcode -> Makefile Ver: Feb 14 2007 09:18:41] -# Created: [Thu Feb 24 19:53:17 2011] +# Base for MCServer Makefile +# This file only declares per-file dependencies; if a source file is added to the project, it needs to be added here +# Do not make using this file directly, instead use the makefile.* wrappers, depending on what build you want +# To use this file, either copy makefile.debug or makefile.release as makefile, or run "make -f makefile.debug" or "make -f makefile.release" # ################################################### -# -# Macros -# CC = /usr/bin/g++ -# _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 - - -# _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 directories for MCServer # @@ -1570,4 +1554,4 @@ build/WSSCompact.o : source/WSSCompact.cpp # Template: copy and delete the "# "; insert filenames # build/.o : source/.cpp # $(CC) $(CC_OPTIONS) source/.cpp -c $(INCLUDE) -o build/.o -##### END RUN #### + |