all: hello

hello: hello.c
	gcc -o hello hello.c

install: hello
	install -d $(DESTDIR)/usr/bin
	install -s -m 0755 -o root -g root hello $(DESTDIR)/usr/bin/hello

clean:
	rm -f hello
