source:
code/trunk/Makefile@
55
Last change on this file since 55 was 55, checked in by , 3 years ago | |
---|---|
File size: 259 bytes |
Rev | Line | |
---|---|---|
[55] | 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 |
Note:
See TracBrowser
for help on using the repository browser.