From 92283283cc56101fd84293938edc4527b3882aad Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 16 Oct 2020 16:20:55 +0300 Subject: . --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3