From 405c4f104975e5456ce6b28ad31fd996d3f4b657 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 16 Oct 2020 12:45:33 +0300 Subject: Initial --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3