diff options
author | exegete <nikitf-97@mail.ru> | 2020-10-17 16:40:23 +0300 |
---|---|---|
committer | exegete <nikitf-97@mail.ru> | 2020-10-17 16:40:23 +0300 |
commit | 65c54a8986b3519c1949d280e58f46af2eceff85 (patch) | |
tree | 0c2a20ec51f0ca2d1472b8df3dd79871e544d99a /Makefile | |
parent | b6b9e29c1484c9c8b8af2b382d3a9d796c310217 (diff) | |
download | cryptrobber-65c54a8986b3519c1949d280e58f46af2eceff85.tar cryptrobber-65c54a8986b3519c1949d280e58f46af2eceff85.tar.xz cryptrobber-65c54a8986b3519c1949d280e58f46af2eceff85.zip |
float, constants, ets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,23 +1,23 @@ all: cryptrobber encrypt test .PHONY: all clean cryptrobber encrypt test -cryptrobber: smack strans - ./smack main.sts | ./strans > $@ +cryptrobber: enki/smack enki/strans + enki/smack main.sts | enki/strans > $@ chmod 0755 $@ -encrypt: smack strans - ./smack encrypt.sts | ./strans > $@ +encrypt: enki/smack enki/strans + enki/smack encrypt.sts | enki/strans > $@ chmod 0755 $@ -test: smack strans - ./smack test.sts | ./strans > $@ +test: enki/smack enki/strans + enki/smack test.sts | enki/strans > $@ chmod 0755 $@ -smack: smack.c +enki/smack: enki/smack.c gcc $< -o $@ -strans: strans.c +enki/strans: enki/strans.c gcc $< -o $@ clean: - rm -f smack strans cryptrobber encrypt test + rm -f enki/smack enki/strans cryptrobber encrypt test |