summaryrefslogblamecommitdiff
path: root/src/tool/Makefile.in
blob: 78300a68ce187c4398ab168e4c6040971fa6007e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


          
                                                                     
                                        
 
                     



                                                     

                                                             

      
                                                                     

     
                                                                              
                                 





                                                                     
@SET_MAKE@

#####################################################################
.PHONY : all adduser mapcache clean help

all: adduser mapcache

adduser:
	@CC@ -o ../../tools/adduser@EXEEXT@ adduser.c

mapcache:
	@CC@ -o ../../mapcache@EXEEXT@ mapcache.c grfio.c -lz

clean:
	rm -rf *.o ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@

help:
	@echo "possible targets are 'adduser' 'mapcache' 'all' 'clean' 'help'"
	@echo "'adduser'   - ???"
	@echo "'mapcache'  - mapcache generator"
	@echo "'all'       - builds all above targets"
	@echo "'clean'     - cleans builds and objects"
	@echo "'help'      - outputs this message"

#####################################################################