summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-14 14:38:17 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-14 14:38:17 +0100
commit4d6bad2b21596a9fa418e905d82684ec9a990096 (patch)
tree348b2766eca1d4a8705e315f79f0125f09d18eca /makefile
parentUpdated fluid simulators with geser's patch file! (diff)
downloadcuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.tar
cuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.tar.gz
cuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.tar.bz2
cuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.tar.lz
cuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.tar.xz
cuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.tar.zst
cuberite-4d6bad2b21596a9fa418e905d82684ec9a990096.zip
Diffstat (limited to 'makefile')
-rw-r--r--makefile16
1 files changed, 15 insertions, 1 deletions
diff --git a/makefile b/makefile
index 98cde4524..ecc035092 100644
--- a/makefile
+++ b/makefile
@@ -260,7 +260,9 @@ MCServer : \
build/cWebPlugin_Lua.o\
build/StringUtils.o\
build/cIsThread.o\
- build/cSocketThreads.o
+ build/cSocketThreads.o\
+ build/WorldStorage.o\
+ build/WSSCompact.o
$(CC) $(LNK_OPTIONS) \
build/json_reader.o\
build/json_value.o\
@@ -474,6 +476,8 @@ MCServer : \
build/StringUtils.o\
build/cIsThread.o\
build/cSocketThreads.o\
+ build/WorldStorage.o\
+ build/WSSCompact.o\
-o MCServer
clean :
@@ -1556,4 +1560,14 @@ build/cIsThread.o : source/cIsThread.cpp
build/cSocketThreads.o : source/cSocketThreads.cpp
$(CC) $(CC_OPTIONS) source/cSocketThreads.cpp -c $(INCLUDE) -o build/cSocketThreads.o
+build/WorldStorage.o : source/WorldStorage.cpp
+ $(CC) $(CC_OPTIONS) source/WorldStorage.cpp -c $(INCLUDE) -o build/WorldStorage.o
+
+build/WSSCompact.o : source/WSSCompact.cpp
+ $(CC) $(CC_OPTIONS) source/WSSCompact.cpp -c $(INCLUDE) -o build/WSSCompact.o
+
+
+# Template: copy and delete the "# "; insert filenames
+# build/.o : source/.cpp
+# $(CC) $(CC_OPTIONS) source/.cpp -c $(INCLUDE) -o build/.o
##### END RUN ####