From bb49f0e021fb1fbefad44d944233fb1cf72c495c Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 1 Feb 2012 09:12:54 +0000 Subject: Introducing StringUtils - the place to be if you are a generic string routine :) No more sprintf()! git-svn-id: http://mc-server.googlecode.com/svn/trunk@209 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 3b286f906..0f92fe58a 100644 --- a/makefile +++ b/makefile @@ -247,7 +247,8 @@ MCServer : \ build/cFileFormatUpdater.o\ build/cItem.o\ build/cPlugin_NewLua.o\ - build/cWebPlugin_Lua.o + build/cWebPlugin_Lua.o\ + build/StringUtils.o $(CC) $(LNK_OPTIONS) \ build/json_reader.o\ build/json_value.o\ @@ -458,6 +459,7 @@ MCServer : \ build/cItem.o\ build/cPlugin_NewLua.o\ build/cWebPlugin_Lua.o\ + build/StringUtils.o\ -o MCServer clean : @@ -671,6 +673,7 @@ clean : build/cItem.o\ build/cPlugin_NewLua.o\ build/cWebPlugin_Lua.o\ + build/StringUtils.o\ MCServer install : MCServer @@ -1528,4 +1531,7 @@ build/cPlugin_NewLua.o : source/cPlugin_NewLua.cpp build/cWebPlugin_Lua.o : source/cWebPlugin_Lua.cpp $(CC) $(CC_OPTIONS) source/cWebPlugin_Lua.cpp -c $(INCLUDE) -o build/cWebPlugin_Lua.o +build/StringUtils.o : source/StringUtils.cpp + $(CC) $(CC_OPTIONS) source/StringUtils.cpp -c $(INCLUDE) -o build/StringUtils.o + ##### END RUN #### -- cgit v1.2.3