aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fc94f79..581241b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,14 @@
-cryptrobber: main.sts strans smack
- ./smack $< | ./strans > $@
+.PHONY: cryptrobber clean
+
+cryptrobber:
+ ./smack main.sts | ./strans > $@
chmod 0755 $@
smack: smack.c
gcc $< -o $@
+
strans: strans.c
gcc $< -o $@
-.PHONY: clean
clean:
rm -f smack strans cryptrobber