diff options
author | exegete <nikitf-97@mail.ru> | 2020-10-16 20:14:51 +0300 |
---|---|---|
committer | exegete <nikitf-97@mail.ru> | 2020-10-16 20:14:51 +0300 |
commit | ce9e52469d0b12b3231ccc199e1b19bb924f54cd (patch) | |
tree | b011b8652e33a655852608dbba387d8bfec06805 /Makefile | |
parent | 8ed92623de375e93d384aeeaf9f2520f48c9257d (diff) | |
download | cryptrobber-ce9e52469d0b12b3231ccc199e1b19bb924f54cd.tar cryptrobber-ce9e52469d0b12b3231ccc199e1b19bb924f54cd.tar.xz cryptrobber-ce9e52469d0b12b3231ccc199e1b19bb924f54cd.zip |
test module; top, as added
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 $@ |