aboutsummaryrefslogtreecommitdiff
path: root/advent-of-code/2022/09/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'advent-of-code/2022/09/Makefile')
-rw-r--r--advent-of-code/2022/09/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/advent-of-code/2022/09/Makefile b/advent-of-code/2022/09/Makefile
deleted file mode 100644
index 28d6768..0000000
--- a/advent-of-code/2022/09/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-all: 1.out 2.out
-LIB=../lib/crc32.c ../lib/htable.c
-
-1.out: 1.c
- cc -g -I../lib/ $< $(LIB) -o $@
-
-2.out: 2.c
- cc -g -I../lib/ $< $(LIB) -o $@
-
-.PHONY: clean
-clean:
- -rm *.out