blob: 69144a40362482548c301948a11d3d8e0671944c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.PHONY: all install
all:
echo 'Error 1: You are made of stupid!' >&2
exit 23
install: \
../../bin/cnot \
../../bin/clive-knut \
../../bin/ttycnser-login
../../bin/cnot: clients/cnot/index
ln -vsnf ../cholerab/knut/$< $@
../../bin/clive-knut: index.js
ln -vsnf ../cholerab/knut/$< $@
../../bin/ttycnser-login: plugs/ttycnser/bin/login
ln -vsnf ../cholerab/knut/$< $@
|