From 7e743398a92f6878659fc429bda26501ca2fa357 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Mon, 30 Jan 2012 13:54:39 +0000 Subject: Initial cFile implementation (using stdio FILE) and test in cChunkMap git-svn-id: http://mc-server.googlecode.com/svn/trunk@192 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index 84c671bde..db7abd75b 100644 --- a/makefile +++ b/makefile @@ -84,6 +84,7 @@ MCServer : \ build/cEntity.o\ build/cEvent.o\ build/cEvents.o\ + build/cFile.o\ build/cFurnaceEntity.o\ build/cFurnaceRecipe.o\ build/cFurnaceWindow.o\ @@ -293,6 +294,7 @@ MCServer : \ build/cEntity.o\ build/cEvent.o\ build/cEvents.o\ + build/cFile.o\ build/cFurnaceEntity.o\ build/cFurnaceRecipe.o\ build/cFurnaceWindow.o\ @@ -1522,5 +1524,7 @@ build/cWebPlugin_Lua.o : source/cWebPlugin_Lua.cpp build/cEvents.o : webserver/cEvents.cpp $(CC) $(CC_OPTIONS) webserver/cEvents.cpp -c $(INCLUDE) -o build/cEvents.o +build/cFile.o : source/cFile.cpp + $(CC) $(CC_OPTIONS) source/cFile.cpp -c $(INCLUDE) -o build/cFile.o ##### END RUN #### -- cgit v1.2.3