forked from adolfopa/miscutils
Adolfo Perez Alvarez
7dcf64ef11
newp is a dump shortcut that will create a new ms article. ts is a tool similar to cram or tush.
9 lines
274 B
Makefile
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}
|