aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-10-16 12:45:33 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-10-16 12:45:33 +0300
commit405c4f104975e5456ce6b28ad31fd996d3f4b657 (patch)
tree53a1b855c068c41b73ee0560d5e664d56923d63b /Makefile
downloadcryptrobber-405c4f104975e5456ce6b28ad31fd996d3f4b657.tar
cryptrobber-405c4f104975e5456ce6b28ad31fd996d3f4b657.tar.xz
cryptrobber-405c4f104975e5456ce6b28ad31fd996d3f4b657.zip
Initial
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fc94f79
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+cryptrobber: main.sts strans smack
+ ./smack $< | ./strans > $@
+ chmod 0755 $@
+
+smack: smack.c
+ gcc $< -o $@
+strans: strans.c
+ gcc $< -o $@
+
+.PHONY: clean
+clean:
+ rm -f smack strans cryptrobber