blob: 21471d40f0636df7f71fa88a05e735c3c8bc47fd [file] [log] [blame]
# 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) $< -o $@ -Wall -lhello