Files
miscutils/Makefile
Adolfo Perez Alvarez b3e848efe8 Delete rr script
Use instead `rr` in the `kshutils` repository.
2025-11-22 17:42:52 +01:00

9 lines
277 B
Makefile

prefix=$$HOME/opt/pkg/miscutils
target_bin=${prefix}/bin
target_man=${prefix}/share/man/man1
bin=bwrap hppt mkgmap newp osc p rot scmfmt ts upcasetl unpage
install:
install -d ${target_bin} ${target_man}
install -c ${bin} ${target_bin}
install -c ${bin:%=%.1} ${target_man}