root/src/tool/Makefile.in @ 6

Revision 1, 0.8 kB (checked in by jinshiro, 17 years ago)
Line 
1
2@SET_MAKE@
3
4#####################################################################
5.PHONY : all adduser mapcache clean help
6
7all: adduser mapcache
8
9adduser:
10        @CC@ -o ../../tools/adduser@EXEEXT@ adduser.c
11
12mapcache: obj_mapcache
13        @CC@ -c -o obj_mapcache/grfio.o grfio.c
14        @CC@ -o ../../mapcache@EXEEXT@ mapcache.c obj_mapcache/grfio.o -lz
15
16clean:
17        rm -rf *.o obj_mapcache ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@
18
19help:
20        @echo "possible targets are 'adduser' 'mapcache' 'all' 'clean' 'help'"
21        @echo "'adduser'   - ???"
22        @echo "'mapcache'  - mapcache generator"
23        @echo "'all'       - builds all above targets"
24        @echo "'clean'     - cleans builds and objects"
25        @echo "'help'      - outputs this message"
26
27#####################################################################
28
29obj_mapcache:
30        -mkdir obj_mapcache
Note: See TracBrowser for help on using the browser.