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
This commit is contained in:
DracoRPG 2007-03-15 10:44:19 +00:00
parent fec9da329e
commit 4f95fcb339

View File

@ -1,4 +1,4 @@
all: adduser convert all: adduser convert mapcache
adduser: adduser:
$(CC) -o ../../tools/$@ adduser.c $(CC) -o ../../tools/$@ adduser.c
@ -6,5 +6,9 @@ adduser:
convert: convert:
$(CC) -o ../../tools/$@ convert.c $(CC) -o ../../tools/$@ convert.c
mapcache:
$(MAKE) -C ../zlib
$(CC) -o ../../$@ mapcache.c ../zlib/unz.o
clean: clean:
rm -rf ../../tools/adduser ../../tools/convert rm -rf ../../tools/adduser ../../tools/convert ../../mapcache