summaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-01 05:55:17 +0100
committerlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-01 05:55:17 +0100
commitd7068b35a85f0c0248a5533240087747d02e1a17 (patch)
tree7d40a34bdda09c0fbccc9e8052043709cfd88d7b /makefile
parentChests, furnaces and dispensers face the correct way now. (diff)
downloadcuberite-d7068b35a85f0c0248a5533240087747d02e1a17.tar
cuberite-d7068b35a85f0c0248a5533240087747d02e1a17.tar.gz
cuberite-d7068b35a85f0c0248a5533240087747d02e1a17.tar.bz2
cuberite-d7068b35a85f0c0248a5533240087747d02e1a17.tar.lz
cuberite-d7068b35a85f0c0248a5533240087747d02e1a17.tar.xz
cuberite-d7068b35a85f0c0248a5533240087747d02e1a17.tar.zst
cuberite-d7068b35a85f0c0248a5533240087747d02e1a17.zip
Diffstat (limited to 'makefile')
-rw-r--r--makefile22
1 files changed, 17 insertions, 5 deletions
diff --git a/makefile b/makefile
index 223c6e13b..7f922f4a0 100644
--- a/makefile
+++ b/makefile
@@ -89,6 +89,8 @@ MCServer : \
build/cGroup.o\
build/cGroupManager.o\
build/cInventory.o\
+ build/cCreativeInventory.o\
+ build/cSurvivalInventory.o\
build/cLog.o\
build/cMonster.o\
build/cAggressiveMonster.o\
@@ -138,7 +140,7 @@ MCServer : \
build/cPacket_DestroyEntity.o\
build/cPacket_Disconnect.o\
build/cPacket_EntityEquipment.o\
- build/cPacket_CreateInventoryAction.o\
+ build/cPacket_CreativeInventoryAction.o\
build/cPacket_NewInvalidState.o\
build/cPacket_Thunderbolt.o\
build/cPacket_EntityLook.o\
@@ -293,6 +295,8 @@ MCServer : \
build/cGroup.o\
build/cGroupManager.o\
build/cInventory.o\
+ build/cCreativeInventory.o\
+ build/cSurvivalInventory.o\
build/cLog.o\
build/cMonster.o\
build/cAggressiveMonster.o\
@@ -342,7 +346,7 @@ MCServer : \
build/cPacket_DestroyEntity.o\
build/cPacket_Disconnect.o\
build/cPacket_EntityEquipment.o\
- build/cPacket_CreateInventoryAction.o\
+ build/cPacket_CreativeInventoryAction.o\
build/cPacket_NewInvalidState.o\
build/cPacket_Thunderbolt.o\
build/cPacket_EntityLook.o\
@@ -500,6 +504,8 @@ clean :
build/cGroup.o\
build/cGroupManager.o\
build/cInventory.o\
+ build/cCreativeInventory.o\
+ build/cSurvivalInventory.o\
build/cLog.o\
build/cMonster.o\
build/cAggressiveMonster.o\
@@ -549,7 +555,7 @@ clean :
build/cPacket_DestroyEntity.o\
build/cPacket_Disconnect.o\
build/cPacket_EntityEquipment.o\
- build/cPacket_CreateInventoryAction.o\
+ build/cPacket_CreativeInventoryAction.o\
build/cPacket_NewInvalidState.o\
build/cPacket_Thunderbolt.o\
build/cPacket_EntityLook.o\
@@ -770,6 +776,12 @@ build/cGroupManager.o : source/cGroupManager.cpp
# Item # 21 -- cInventory --
build/cInventory.o : source/cInventory.cpp
$(CC) $(CC_OPTIONS) source/cInventory.cpp -c $(INCLUDE) -o build/cInventory.o
+
+build/cCreativeInventory.o : source/cCreativeInventory.cpp
+ $(CC) $(CC_OPTIONS) source/cCreativeInventory.cpp -c $(INCLUDE) -o build/cCreativeInventory.o
+
+build/cSurvivalInventory.o : source/cSurvivalInventory.cpp
+ $(CC) $(CC_OPTIONS) source/cSurvivalInventory.cpp -c $(INCLUDE) -o build/cSurvivalInventory.o
# Item # 22 -- cLog --
@@ -981,8 +993,8 @@ build/cPacket_Disconnect.o : source/packets/cPacket_Disconnect.cpp
build/cPacket_EntityEquipment.o : source/packets/cPacket_EntityEquipment.cpp
$(CC) $(CC_OPTIONS) source/packets/cPacket_EntityEquipment.cpp -c $(INCLUDE) -o build/cPacket_EntityEquipment.o
-build/cPacket_CreateInventoryAction.o : source/packets/cPacket_CreateInventoryAction.cpp
- $(CC) $(CC_OPTIONS) source/packets/cPacket_CreateInventoryAction.cpp -c $(INCLUDE) -o build/cPacket_CreateInventoryAction.o
+build/cPacket_CreativeInventoryAction.o : source/packets/cPacket_CreativeInventoryAction.cpp
+ $(CC) $(CC_OPTIONS) source/packets/cPacket_CreativeInventoryAction.cpp -c $(INCLUDE) -o build/cPacket_CreativeInventoryAction.o
build/cPacket_NewInvalidState.o : source/packets/cPacket_NewInvalidState.cpp
$(CC) $(CC_OPTIONS) source/packets/cPacket_NewInvalidState.cpp -c $(INCLUDE) -o build/cPacket_NewInvalidState.o