diff options
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 f1d688a7d..efe3383ac 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -2,27 +2,23 @@ @SET_MAKE@ ##################################################################### -.PHONY : all adduser convert mapcache clean help +.PHONY : all adduser mapcache clean help -all: adduser convert mapcache +all: adduser mapcache adduser: @CC@ -o ../../tools/adduser@EXEEXT@ adduser.c -convert: - @CC@ -o ../../tools/convert@EXEEXT@ convert.c - mapcache: obj_mapcache @CC@ -c -o obj_mapcache/grfio.o grfio.c @CC@ -o ../../mapcache@EXEEXT@ mapcache.c obj_mapcache/grfio.o -lz clean: - rm -rf *.o obj_mapcache ../../tools/adduser@EXEEXT@ ../../tools/convert@EXEEXT@ ../../mapcache@EXEEXT@ + rm -rf *.o obj_mapcache ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@ help: - @echo "possible targets are 'adduser' 'convert' 'mapcache' 'all' 'clean' 'help'" + @echo "possible targets are 'adduser' 'mapcache' 'all' 'clean' 'help'" @echo "'adduser' - ???" - @echo "'convert' - ???" @echo "'mapcache' - mapcache generator" @echo "'all' - builds all above targets" @echo "'clean' - cleans builds and objects" |