miscutils/Makefile
Adolfo Perez Alvarez 7dcf64ef11 Add newp (new post) and ts (shell test) tools
newp is a dump shortcut that will create a new ms article.

ts is a tool similar to cram or tush.
2022-10-04 14:22:52 +00:00

9 lines
274 B
Makefile

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