aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 344c808..56947b1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-all: cryptrobber encrypt
-.PHONY: all clean encrypt cryptrobber
+all: cryptrobber encrypt test
+.PHONY: all clean cryptrobber encrypt test
cryptrobber: smack strans
./smack main.sts | ./strans > $@
@@ -9,6 +9,10 @@ encrypt: smack strans
./smack encrypt.sts | ./strans > $@
chmod 0755 $@
+test: smack strans
+ ./smack test.sts | ./strans > $@
+ chmod 0755 $@
+
smack: smack.c
gcc $< -o $@