diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-24 19:38:48 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-01-24 19:38:48 +0000 |
commit | 720440a9f92cfa64825c95f65df66a8ea078ec52 (patch) | |
tree | 657ab13681589871f3266f3463296af9a9171bb0 /src/tool/Makefile.in | |
parent | 4bf5fc03a70033962b6f0703780898c97eadf6ec (diff) | |
download | hercules-720440a9f92cfa64825c95f65df66a8ea078ec52.tar.gz hercules-720440a9f92cfa64825c95f65df66a8ea078ec52.tar.bz2 hercules-720440a9f92cfa64825c95f65df66a8ea078ec52.tar.xz hercules-720440a9f92cfa64825c95f65df66a8ea078ec52.zip |
* Changed the variables of the mapcache structs to fixed size equivalents. (64bit portability issue)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13483 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool/Makefile.in')
-rw-r--r-- | src/tool/Makefile.in | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index efe3383ac..78300a68c 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -9,12 +9,11 @@ all: adduser mapcache adduser: @CC@ -o ../../tools/adduser@EXEEXT@ adduser.c -mapcache: obj_mapcache - @CC@ -c -o obj_mapcache/grfio.o grfio.c - @CC@ -o ../../mapcache@EXEEXT@ mapcache.c obj_mapcache/grfio.o -lz +mapcache: + @CC@ -o ../../mapcache@EXEEXT@ mapcache.c grfio.c -lz clean: - rm -rf *.o obj_mapcache ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@ + rm -rf *.o ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@ help: @echo "possible targets are 'adduser' 'mapcache' 'all' 'clean' 'help'" @@ -25,6 +24,3 @@ help: @echo "'help' - outputs this message" ##################################################################### - -obj_mapcache: - -mkdir obj_mapcache |