summaryrefslogblamecommitdiff
path: root/src/tool/Makefile
blob: fef165ba526db99504bebf29c446524b998c9782 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             






                                         
         
                                   
                                                
 
      
                                                                         
all: adduser convert mapcache

adduser:
	$(CC) -o ../../tools/$@ adduser.c

convert:
	$(CC) -o ../../tools/$@ convert.c

mapcache:
	$(CC) -c -o grfio.o grfio.c
	$(CC) -o ../../$@ mapcache.c grfio.o -lz

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