diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2020-10-16 16:20:55 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-10-16 16:20:55 +0300 |
commit | 92283283cc56101fd84293938edc4527b3882aad (patch) | |
tree | 77314c569270ffbf11f5091f30fe872ee11b2e71 /Makefile | |
parent | ac7b0be8b22245e20624b937733c16fb3a11b24b (diff) | |
download | cryptrobber-92283283cc56101fd84293938edc4527b3882aad.tar cryptrobber-92283283cc56101fd84293938edc4527b3882aad.tar.xz cryptrobber-92283283cc56101fd84293938edc4527b3882aad.zip |
.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,9 +1,14 @@ -.PHONY: cryptrobber clean +all: cryptrobber encrypt +.PHONY: all clean encrpyt cryptrobber -cryptrobber: +cryptrobber: smack strans ./smack main.sts | ./strans > $@ chmod 0755 $@ +encrypt: smack strans + ./smack encrypt.sts | ./strans > $@ + chmod 0755 $@ + smack: smack.c gcc $< -o $@ @@ -11,4 +16,4 @@ strans: strans.c gcc $< -o $@ clean: - rm -f smack strans cryptrobber + rm -f smack strans cryptrobber encrypt |