Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - 9base - revived minimalist port of Plan 9 userland to Unix
git clone git://git.suckless.org/9base
Log
Files
Refs
README
LICENSE
---
Makefile (389B)
---
1 # ssam - stream interface for sam
2 # Depends on ../lib9
3
4 include ../config.mk
5
6 all:
7 @echo built ssam
8
9 install:
10 @cp -f ssam ${DESTDIR}${PREFIX}/bin/
11 @chmod 755 ${DESTDIR}${PREFIX}/bin/ssam
12 @cp -f ssam.1 ${DESTDIR}${MANPREFIX}/man1/
13 @chmod 444 ${DESTDIR}${MANPREFIX}/man1/ssam.1
14
15 uninstall:
16 @rm -f ${DESTDIR}${PREFIX}/bin/ssam
17 @rm -f ${DESTDIR}${MANPREFIX}/man1/ssam.1
18
19 clean:
20 @true
21
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.