blob: 8c8425116be500c8837e0d42a8f58136d9d2c207 (
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) -Wall -o $@ $<
|