Mercurial > yakumo_izuru > aya
comparison Makefile @ 54:4d411cdd68c1 draft
Updated manual page and added a Makefile
author | novaburst |
---|---|
date | Fri, 07 Jan 2022 23:20:51 +0000 |
parents | |
children | c6785950280e |
comparison
equal
deleted
inserted
replaced
53:be0a08e4a0f6 | 54:4d411cdd68c1 |
---|---|
1 destdir ?= | |
2 prefix ?= /usr/local | |
3 | |
4 build: | |
5 go build -v | |
6 clean: | |
7 rm -f zs | |
8 install: | |
9 install -m0755 zs ${destdir}${prefix}/bin/zs | |
10 install -m0644 zs.1 ${destdir}${prefix}/share/man/man1/zs.1 | |
11 uninstall: | |
12 rm -f ${prefix}/bin/zs | |
13 rm -f ${prefix}/share/man/man1/zs.1 |