summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-28 22:00:35 +0100
committerlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-28 22:00:35 +0100
commitc6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66 (patch)
treef223c11d65a1b0983651c7a2644149219b5f3617 /makefile
parent - Fixed too fast actions kick for real (diff)
downloadcuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.tar
cuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.tar.gz
cuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.tar.bz2
cuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.tar.lz
cuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.tar.xz
cuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.tar.zst
cuberite-c6b4ee8c9fb597b6f87f4cb756f43d5548ab2d66.zip
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/makefile b/makefile
index 10ab38351..223c6e13b 100644
--- a/makefile
+++ b/makefile
@@ -239,6 +239,7 @@ MCServer : \
build/cFluidSimulator.o\
build/cWaterSimulator.o\
build/cLavaSimulator.o\
+ build/cFireSimulator.o\
build/cFileFormatUpdater.o\
build/cItem.o
$(CC) $(LNK_OPTIONS) \
@@ -442,6 +443,7 @@ MCServer : \
build/cFluidSimulator.o\
build/cWaterSimulator.o\
build/cLavaSimulator.o\
+ build/cFireSimulator.o\
build/cFileFormatUpdater.o\
build/cItem.o\
-o MCServer
@@ -648,6 +650,7 @@ clean :
build/cFluidSimulator.o\
build/cWaterSimulator.o\
build/cLavaSimulator.o\
+ build/cFireSimulator.o\
build/cFileFormatUpdater.o\
build/cItem.o\
MCServer
@@ -1480,6 +1483,9 @@ build/cWaterSimulator.o : source/cWaterSimulator.cpp
build/cLavaSimulator.o : source/cLavaSimulator.cpp
$(CC) $(CC_OPTIONS) source/cLavaSimulator.cpp -c $(INCLUDE) -o build/cLavaSimulator.o
+
+build/cFireSimulator.o : source/cFireSimulator.cpp
+ $(CC) $(CC_OPTIONS) source/cFireSimulator.cpp -c $(INCLUDE) -o build/cFireSimulator.o
build/cFileFormatUpdater.o : source/cFileFormatUpdater.cpp
$(CC) $(CC_OPTIONS) source/cFileFormatUpdater.cpp -c $(INCLUDE) -o build/cFileFormatUpdater.o