diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-28 13:26:35 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-28 13:26:35 +0000 |
commit | 296cc8b832aeed7932327017c4489874725f82f1 (patch) | |
tree | 4a8df020ea14f4f18cd3d7429496381420e675e8 /src/tool/Makefile.in | |
parent | 2b36c1771884ccfa13e1df460fb7f6c6c5a04d12 (diff) | |
download | hercules-296cc8b832aeed7932327017c4489874725f82f1.tar.gz hercules-296cc8b832aeed7932327017c4489874725f82f1.tar.bz2 hercules-296cc8b832aeed7932327017c4489874725f82f1.tar.xz hercules-296cc8b832aeed7932327017c4489874725f82f1.zip |
* Removed unmaintained and broken 'adduser' tool (topic:262284).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14636 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool/Makefile.in')
-rw-r--r-- | src/tool/Makefile.in | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index 78300a68c..61a54709d 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -2,22 +2,18 @@ @SET_MAKE@ ##################################################################### -.PHONY : all adduser mapcache clean help +.PHONY : all mapcache clean help -all: adduser mapcache - -adduser: - @CC@ -o ../../tools/adduser@EXEEXT@ adduser.c +all: mapcache mapcache: @CC@ -o ../../mapcache@EXEEXT@ mapcache.c grfio.c -lz clean: - rm -rf *.o ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@ + rm -rf *.o ../../mapcache@EXEEXT@ help: - @echo "possible targets are 'adduser' 'mapcache' 'all' 'clean' 'help'" - @echo "'adduser' - ???" + @echo "possible targets are 'mapcache' 'all' 'clean' 'help'" @echo "'mapcache' - mapcache generator" @echo "'all' - builds all above targets" @echo "'clean' - cleans builds and objects" |