9 lines
280 B
Makefile
9 lines
280 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 rr scmfmt ts upcasetl unpage
|
|
install:
|
|
install -d ${target_bin} ${target_man}
|
|
install -c ${bin} ${target_bin}
|
|
install -c ${bin:%=%.1} ${target_man}
|