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


          
                                                                     
                                
 
             
 

                                                             

      
                                         

     
                                                                    





                                                                     
@SET_MAKE@

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

all: mapcache

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

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

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

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