aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-12-10 21:01:19 +0100
committerThomas Schmucker <ts@its1.de>2025-12-10 21:01:19 +0100
commite8bdb4f2ddb1a5137ecbfbe528f40c1cd253df17 (patch)
tree8513d89b359ba594929dbb3a09399e74efa7d58b /makefile
parent3f7af92f6ddb727312530783f10d67cbd8525548 (diff)
downloadadvent-of-code-e8bdb4f2ddb1a5137ecbfbe528f40c1cd253df17.tar.gz
advent-of-code-e8bdb4f2ddb1a5137ecbfbe528f40c1cd253df17.tar.bz2
advent-of-code-e8bdb4f2ddb1a5137ecbfbe528f40c1cd253df17.zip
aoc 2025, day 10, part 2
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile
index 634c220..536ac76 100644
--- a/makefile
+++ b/makefile
@@ -62,6 +62,9 @@ all: $(patsubst 2015/src/%.cpp,2015/bin/%,$(wildcard 2015/src/*.cpp)) \
622025/bin/%: 2025/src/%.cpp | 2025/bin 622025/bin/%: 2025/src/%.cpp | 2025/bin
63 c++ $(CPPFLAGS) $^ -o $@ 63 c++ $(CPPFLAGS) $^ -o $@
64 64
652025/bin/day10p2: 2025/src/day10p2.cpp | 2025/bin
66 c++ $(CPPFLAGS) -Wno-sign-conversion $^ -lz3 -o $@
67
65clean: 68clean:
66 rm -rf 2015/bin 2016/bin 2017/bin 2020/bin 2022/bin 2023/bin 2024/bin 2025/bin 69 rm -rf 2015/bin 2016/bin 2017/bin 2020/bin 2022/bin 2023/bin 2024/bin 2025/bin
67 70