diff options
author | exegete <nikitf-97@mail.ru> | 2020-10-16 16:25:06 +0300 |
---|---|---|
committer | exegete <nikitf-97@mail.ru> | 2020-10-16 16:25:06 +0300 |
commit | b92ef5212daad3f318aa26fdaf69fdeb7e66e8a4 (patch) | |
tree | 23d6c739c932c986f3c891f2f76ca8afc7a2d181 /Makefile | |
parent | 68ea390db8e5977dcc84dc93daeb467ee243cb35 (diff) | |
download | cryptrobber-b92ef5212daad3f318aa26fdaf69fdeb7e66e8a4.tar cryptrobber-b92ef5212daad3f318aa26fdaf69fdeb7e66e8a4.tar.xz cryptrobber-b92ef5212daad3f318aa26fdaf69fdeb7e66e8a4.zip |
set, get, syscall, makefile
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 |