summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-15 10:44:19 +0000
committerDracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-03-15 10:44:19 +0000
commit8a915d93e6f38a99478464659a07a25198ba3053 (patch)
tree93356c4f0e7577211ada66757f7a0542b4e24908
parentcfa0ad0b50bcf0eed041ffbd867eed1929280f9b (diff)
downloadhercules-8a915d93e6f38a99478464659a07a25198ba3053.tar.gz
hercules-8a915d93e6f38a99478464659a07a25198ba3053.tar.bz2
hercules-8a915d93e6f38a99478464659a07a25198ba3053.tar.xz
hercules-8a915d93e6f38a99478464659a07a25198ba3053.zip
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://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10012 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--src/tool/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tool/Makefile b/src/tool/Makefile
index 12f62e373..c3de27b68 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