summaryrefslogtreecommitdiff
path: root/doc/examples/strict-mode/files/hello/Makefile.static
blob: 87fb512060c03c10ff6be0c68e5a043948b86918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Sample makefile for hello.c
#
.PHONY: all install

all: hello

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

hello: hello.c
	$(CC) -Wall -o $@ $< /usr/lib/libhello.a