summaryrefslogtreecommitdiff
path: root/doc/examples/directives/files/src/Makefile
blob: 8e928b0e9a2e04c972274c0e099867de756f64af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Sample makefile for hello.c
#
.PHONY: all install

all: hello

install:
	install -d ${DESTDIR}${PREFIX}/bin
	install -m 755 hello ${DESTDIR}${PREFIX}/bin

hello: hello.c
	$(CC) -DGREETING_MESSAGE="\"${GREETING}\"" -Wall -o $@ $<