diff options
author | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 10:44:19 +0000 |
---|---|---|
committer | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 10:44:19 +0000 |
commit | 8a915d93e6f38a99478464659a07a25198ba3053 (patch) | |
tree | 93356c4f0e7577211ada66757f7a0542b4e24908 /src/tool | |
parent | cfa0ad0b50bcf0eed041ffbd867eed1929280f9b (diff) | |
download | hercules-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
Diffstat (limited to 'src/tool')
-rw-r--r-- | src/tool/Makefile | 8 |
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 |