source: code/trunk/Makefile@ 55

Last change on this file since 55 was 55, checked in by novaburst, 3 years ago

Updated manual page and added a Makefile

File size: 259 bytes
Line 
1destdir ?=
2prefix ?= /usr/local
3
4build:
5 go build -v
6clean:
7 rm -f zs
8install:
9 install -m0755 zs ${destdir}${prefix}/bin/zs
10 install -m0644 zs.1 ${destdir}${prefix}/share/man/man1/zs.1
11uninstall:
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.