Mercurial > yakumo_izuru > aya
changeset 54:4d411cdd68c1 draft
Updated manual page and added a Makefile
author | novaburst |
---|---|
date | Fri, 07 Jan 2022 23:20:51 +0000 |
parents | be0a08e4a0f6 |
children | c6785950280e |
files | Makefile zs.1 |
diffstat | 2 files changed, 14 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Fri Jan 07 23:20:51 2022 +0000 @@ -0,0 +1,13 @@ +destdir ?= +prefix ?= /usr/local + +build: + go build -v +clean: + rm -f zs +install: + install -m0755 zs ${destdir}${prefix}/bin/zs + install -m0644 zs.1 ${destdir}${prefix}/share/man/man1/zs.1 +uninstall: + rm -f ${prefix}/bin/zs + rm -f ${prefix}/share/man/man1/zs.1