diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-05 10:37:21 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-05 10:37:21 +0100 |
commit | 2e28981207430301b54d4d74ee620d0f159f4d8b (patch) | |
tree | 5f6af101fd4ee09b16f6f9fdc9e9f002c69bf6ed /2017/03/Makefile | |
parent | 29fce7fa2a01fe00543e317514e505b4b6524c2b (diff) |
Add day 3 solutions
Diffstat (limited to '2017/03/Makefile')
-rw-r--r-- | 2017/03/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/2017/03/Makefile b/2017/03/Makefile new file mode 100644 index 0000000..fd82d57 --- /dev/null +++ b/2017/03/Makefile @@ -0,0 +1,6 @@ +all: + ${CC} ${CFLAGS} -o puzzle-1 puzzle-1.c + +.PHONY: clean +clean: + rm -f puzzle-1 |