aboutsummaryrefslogtreecommitdiff
path: root/advent-of-code/2023/02/Makefile
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2024-02-14 18:51:22 +0800
committerMistivia <i@mistivia.com>2024-02-14 18:51:22 +0800
commit2cedcf3dfdf44863129c84a55218c265075fd229 (patch)
treed8456f640288e0bfea86cf60b0bc4e38fe1dce5d /advent-of-code/2023/02/Makefile
parentc3e3f8127767541a88c2c211878341f33c03f055 (diff)
refactor advent of code 2023 day 02 from c to racket
Diffstat (limited to 'advent-of-code/2023/02/Makefile')
-rw-r--r--advent-of-code/2023/02/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/advent-of-code/2023/02/Makefile b/advent-of-code/2023/02/Makefile
deleted file mode 100644
index 44480b6..0000000
--- a/advent-of-code/2023/02/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-all: run
-
-run: part1 part2
- ./part1
- ./part2
-
-part1: part1.c
- gcc -g -I../lib/ ../lib/*.c part1.c -o part1
-
-part2: part2.c
- gcc -g -I../lib/ ../lib/*.c part2.c -o part2
-
-clean:
- rm part1 part2