aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorexegete <nikitf-97@mail.ru>2020-10-16 20:14:51 +0300
committerexegete <nikitf-97@mail.ru>2020-10-16 20:14:51 +0300
commitce9e52469d0b12b3231ccc199e1b19bb924f54cd (patch)
treeb011b8652e33a655852608dbba387d8bfec06805 /Makefile
parent8ed92623de375e93d384aeeaf9f2520f48c9257d (diff)
downloadcryptrobber-ce9e52469d0b12b3231ccc199e1b19bb924f54cd.tar
cryptrobber-ce9e52469d0b12b3231ccc199e1b19bb924f54cd.tar.xz
cryptrobber-ce9e52469d0b12b3231ccc199e1b19bb924f54cd.zip
test module; top, as added
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 $@