aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-10-16 16:20:55 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-10-16 16:20:55 +0300
commit92283283cc56101fd84293938edc4527b3882aad (patch)
tree77314c569270ffbf11f5091f30fe872ee11b2e71 /Makefile
parentac7b0be8b22245e20624b937733c16fb3a11b24b (diff)
downloadcryptrobber-92283283cc56101fd84293938edc4527b3882aad.tar
cryptrobber-92283283cc56101fd84293938edc4527b3882aad.tar.xz
cryptrobber-92283283cc56101fd84293938edc4527b3882aad.zip
.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 581241b..63defae 100644
--- a/Makefile
+++ b/Makefile
@@ -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