diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-03-09 00:21:35 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-03-10 21:15:30 +1300 |
commit | 6bc7fdab077b1877f71b69f4b2c1e8046a302e9b (patch) | |
tree | ba7815f0557ed9cef1056ba9c4ba81584c1650bc /Makefile | |
download | sudoku-6bc7fdab077b1877f71b69f4b2c1e8046a302e9b.tar.xz |
Initial working copy, buggy
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..09fc878 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +CFLAGS += -Werror -Wall + +all: solve + +solve: display.o + +clean: + rm -f *.o solve |