aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 581241b7b0ff7a69ae5c64aa1e069f113230c897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: cryptrobber clean

cryptrobber:
	./smack main.sts | ./strans > $@
	chmod 0755 $@

smack: smack.c
	gcc $< -o $@

strans: strans.c
	gcc $< -o $@

clean:
	rm -f smack strans cryptrobber