aboutsummaryrefslogtreecommitdiff
path: root/advent-of-code/2023/04/Makefile
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2024-02-15 17:49:56 +0800
committerMistivia <i@mistivia.com>2024-02-15 17:51:00 +0800
commitf163146fe4b31f1b9e4e25f7f61a5c6928e2fe5b (patch)
treee3e99fc5eb674c783ac2947a4276f1b92a892a64 /advent-of-code/2023/04/Makefile
parent58709a89622062b527b242f65aa0501a4efd47d3 (diff)
refactor advent of code 2023 day 04 from c to racket
Diffstat (limited to 'advent-of-code/2023/04/Makefile')
-rw-r--r--advent-of-code/2023/04/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/advent-of-code/2023/04/Makefile b/advent-of-code/2023/04/Makefile
deleted file mode 100644
index 122af1e..0000000
--- a/advent-of-code/2023/04/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-all: run
-
-run: part1 part2
- ./part1
- ./part2
-
-part1: part1.c
- gcc -g -lm -I../lib/ ../lib/*.c part1.c -o part1
-
-part2: part2.c
- gcc -g -lm -I../lib/ ../lib/*.c part2.c -o part2
-
-clean:
- rm part1 part2