diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2020-10-16 16:14:23 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-10-16 16:14:23 +0300 |
commit | ac7b0be8b22245e20624b937733c16fb3a11b24b (patch) | |
tree | 8d7a85d2406a15704ef5b30859b73ee6340dc897 /Makefile | |
parent | 599a40b02532b65ce5b9ac538c8579e292389766 (diff) | |
parent | b92ef5212daad3f318aa26fdaf69fdeb7e66e8a4 (diff) | |
download | cryptrobber-ac7b0be8b22245e20624b937733c16fb3a11b24b.tar cryptrobber-ac7b0be8b22245e20624b937733c16fb3a11b24b.tar.xz cryptrobber-ac7b0be8b22245e20624b937733c16fb3a11b24b.zip |
Merge remote-tracking branch 'exegete/master' into master
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,12 +1,14 @@ -cryptrobber: main.sts strans smack - ./smack $< | ./strans > $@ +.PHONY: cryptrobber clean + +cryptrobber: + ./smack main.sts | ./strans > $@ chmod 0755 $@ smack: smack.c gcc $< -o $@ + strans: strans.c gcc $< -o $@ -.PHONY: clean clean: rm -f smack strans cryptrobber |