summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/makefile b/makefile
index 5f0ea966f..13eb768b6 100644
--- a/makefile
+++ b/makefile
@@ -223,6 +223,7 @@ MCServer : \
build/iniFile.o\
build/cSocket.o\
build/cWaterSimulator.o\
+ build/cLavaSimulator.o\
build/cFileFormatUpdater.o\
build/cItem.o
$(CC) $(LNK_OPTIONS) \
@@ -410,6 +411,7 @@ MCServer : \
build/iniFile.o\
build/cSocket.o\
build/cWaterSimulator.o\
+ build/cLavaSimulator.o\
build/cFileFormatUpdater.o\
build/cItem.o\
-o MCServer
@@ -600,6 +602,7 @@ clean :
build/iniFile.o\
build/cSocket.o\
build/cWaterSimulator.o\
+ build/cLavaSimulator.o\
build/cFileFormatUpdater.o\
build/cItem.o\
MCServer
@@ -1380,6 +1383,9 @@ build/cSocket.o : source/cSocket.cpp
build/cWaterSimulator.o : source/cWaterSimulator.cpp
$(CC) $(CC_OPTIONS) source/cWaterSimulator.cpp -c $(INCLUDE) -o build/cWaterSimulator.o
+build/cLavaSimulator.o : source/cLavaSimulator.cpp
+ $(CC) $(CC_OPTIONS) source/cLavaSimulator.cpp -c $(INCLUDE) -o build/cLavaSimulator.o
+
build/cFileFormatUpdater.o : source/cFileFormatUpdater.cpp
$(CC) $(CC_OPTIONS) source/cFileFormatUpdater.cpp -c $(INCLUDE) -o build/cFileFormatUpdater.o