blob: 61a54709dc0aa93a843458851cf52859a1235058 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@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"
#####################################################################
|