aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorexegete <nikitf-97@mail.ru>2020-10-17 16:40:23 +0300
committerexegete <nikitf-97@mail.ru>2020-10-17 16:40:23 +0300
commit65c54a8986b3519c1949d280e58f46af2eceff85 (patch)
tree0c2a20ec51f0ca2d1472b8df3dd79871e544d99a /Makefile
parentb6b9e29c1484c9c8b8af2b382d3a9d796c310217 (diff)
downloadcryptrobber-65c54a8986b3519c1949d280e58f46af2eceff85.tar
cryptrobber-65c54a8986b3519c1949d280e58f46af2eceff85.tar.xz
cryptrobber-65c54a8986b3519c1949d280e58f46af2eceff85.zip
float, constants, ets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index a242d89..823e0f2 100644
--- a/Makefile
+++ b/Makefile
@@ -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