PREFIX ?= /usr

tprint: tprint.c
	gcc -o tprint tprint.c

install: tprint
	install -D -m 755 tprint ${DESTDIR}${PREFIX}/bin/tprint

.PHONY: tprint