blob: c0230f267d9c50e786b06a8e37d427f8222d4c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all: cryptrobber encrypt
.PHONY: all clean cryptrobber encrypt
cryptrobber: base/smack base/strans
base/smack cryptrobber.sts | base/strans > $@
chmod 0755 $@
encrypt: base/smack base/strans
base/smack encrypt.sts | base/strans > $@
chmod 0755 $@
base/smack: base/smack.c
gcc $< -o $@
base/strans: base/strans.c
gcc $< -o $@
clean:
rm -f base/smack base/strans cryptrobber encrypt
|