From 4f95fcb33969bf969a307ac6b19398c690918698 Mon Sep 17 00:00:00 2001 From: DracoRPG Date: Thu, 15 Mar 2007 10:44:19 +0000 Subject: [PATCH] Updated the src/tool/Makefile to allow compiling the mapcache builder I don't have an available Unix environment here, so it's very likely it won't work x_x feedback please git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10012 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/tool/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/tool/Makefile b/src/tool/Makefile index 12f62e3735..c3de27b68d 100644 --- a/src/tool/Makefile +++ b/src/tool/Makefile @@ -1,4 +1,4 @@ -all: adduser convert +all: adduser convert mapcache adduser: $(CC) -o ../../tools/$@ adduser.c @@ -6,5 +6,9 @@ adduser: convert: $(CC) -o ../../tools/$@ convert.c +mapcache: + $(MAKE) -C ../zlib + $(CC) -o ../../$@ mapcache.c ../zlib/unz.o + clean: - rm -rf ../../tools/adduser ../../tools/convert + rm -rf ../../tools/adduser ../../tools/convert ../../mapcache