commit 61c2601cf8630c4902be1cc5860a703088fc45e7 from: Paul W. Rankin date: Thu Jul 21 12:12:39 2022 UTC Use cooler variable names in Makefile commit - b148581cb994cb4b585d76e4b4e95d97f9c4ac34 commit + 61c2601cf8630c4902be1cc5860a703088fc45e7 blob - 1b3ce45c2fc04ee034eecd1c95c8ca42049b7525 blob + 22927851ffe957ca183d44aa6274fd3f8890c36a --- Makefile +++ Makefile @@ -1,6 +1,7 @@ -PROGRAM = t_done.sh -PREFIX ?= /usr/local -CLI ?= t +.POSIX: +SRC = todo.sh +PREFIX = /usr/local +TARGET = t install: - install -m 755 $(PROGRAM) $(PREFIX)/bin/$(CLI) + install -m755 ${SRC} ${PREFIX}/bin/${TARGET}