summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authoradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-11-07 02:41:54 +0100
committeradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-11-07 02:41:54 +0100
commit894f6e02d4aadec58240dc66ad0b8c8f41c5e90a (patch)
tree9c5cd2eef30acf0235f7177ebe764157c45bba48 /makefile
parentRedstone wire now updates correctly when added and removed. it also updates all currently programmed redstone items and wire circuits. Also cleaned up the mess I left of the code. (diff)
downloadcuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.tar
cuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.tar.gz
cuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.tar.bz2
cuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.tar.lz
cuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.tar.xz
cuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.tar.zst
cuberite-894f6e02d4aadec58240dc66ad0b8c8f41c5e90a.zip
Diffstat (limited to 'makefile')
-rw-r--r--makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/makefile b/makefile
index 13eb768b6..818678093 100644
--- a/makefile
+++ b/makefile
@@ -122,6 +122,9 @@ MCServer : \
build/cPacket_AddToInventory.o\
build/cPacket_ArmAnim.o\
build/cPacket_BlockChange.o\
+ build/cPacket_BlockAction.o\
+ build/cPacket_Explosion.o\
+ build/cPacket_SoundEffect.o\
build/cPacket_BlockDig.o\
build/cPacket_BlockPlace.o\
build/cPacket_Chat.o\
@@ -310,6 +313,9 @@ MCServer : \
build/cPacket_AddToInventory.o\
build/cPacket_ArmAnim.o\
build/cPacket_BlockChange.o\
+ build/cPacket_BlockAction.o\
+ build/cPacket_Explosion.o\
+ build/cPacket_SoundEffect.o\
build/cPacket_BlockDig.o\
build/cPacket_BlockPlace.o\
build/cPacket_Chat.o\
@@ -501,6 +507,9 @@ clean :
build/cPacket_AddToInventory.o\
build/cPacket_ArmAnim.o\
build/cPacket_BlockChange.o\
+ build/cPacket_BlockAction.o\
+ build/cPacket_Explosion.o\
+ build/cPacket_SoundEffect.o\
build/cPacket_BlockDig.o\
build/cPacket_BlockPlace.o\
build/cPacket_Chat.o\
@@ -880,6 +889,15 @@ build/cPacket_ArmAnim.o : source/packets/cPacket_ArmAnim.cpp
build/cPacket_BlockChange.o : source/packets/cPacket_BlockChange.cpp
$(CC) $(CC_OPTIONS) source/packets/cPacket_BlockChange.cpp -c $(INCLUDE) -o build/cPacket_BlockChange.o
+build/cPacket_BlockAction.o : source/packets/cPacket_BlockAction.cpp
+ $(CC) $(CC_OPTIONS) source/packets/cPacket_BlockAction.cpp -c $(INCLUDE) -o build/cPacket_BlockAction.o
+
+build/cPacket_Explosion.o : source/packets/cPacket_Explosion.cpp
+ $(CC) $(CC_OPTIONS) source/packets/cPacket_Explosion.cpp -c $(INCLUDE) -o build/cPacket_Explosion.o
+
+build/cPacket_SoundEffect.o : source/packets/cPacket_SoundEffect.cpp
+ $(CC) $(CC_OPTIONS) source/packets/cPacket_SoundEffect.cpp -c $(INCLUDE) -o build/cPacket_SoundEffect.o
+
build/cPacket_BlockDig.o : source/packets/cPacket_BlockDig.cpp
$(CC) $(CC_OPTIONS) source/packets/cPacket_BlockDig.cpp -c $(INCLUDE) -o build/cPacket_BlockDig.o