diff options
author | Ian C <ianc@noddybox.co.uk> | 2018-07-07 13:25:14 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2018-07-07 13:25:14 +0000 |
commit | a4e7cdec1e832a274ff2e176ae2e16a566388da8 (patch) | |
tree | d763830db7a694f9890206cbbbe39e51a32eced0 /Makefile | |
parent | 82f2f0438c354883bfd42eeabf30b44826f1ded9 (diff) |
Initial checkin. Argument parsing done.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c8c9ae1 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +codeword: codeword.c + $(CC) -o codeword codeword.c + +clean: + rm -f codeword |