aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: fc94f79c78007fbd96e68bba8396faf24564577f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cryptrobber: main.sts strans smack
	./smack $< | ./strans > $@
	chmod 0755 $@

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

.PHONY: clean
clean:
	rm -f smack strans cryptrobber