diff options
| author | Aleksey Veresov <aleksey@veresov.pro> | 2020-10-16 12:45:33 +0300 |
|---|---|---|
| committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-10-16 12:45:33 +0300 |
| commit | 405c4f104975e5456ce6b28ad31fd996d3f4b657 (patch) | |
| tree | 53a1b855c068c41b73ee0560d5e664d56923d63b /Makefile | |
| download | cryptrobber-405c4f104975e5456ce6b28ad31fd996d3f4b657.tar cryptrobber-405c4f104975e5456ce6b28ad31fd996d3f4b657.tar.xz cryptrobber-405c4f104975e5456ce6b28ad31fd996d3f4b657.zip | |
Initial
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
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 |
