aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-12-12 12:27:51 +0100
committerThomas Schmucker <ts@its1.de>2025-12-12 12:27:51 +0100
commit38a11596571d5281a9ba2c197d0e9cbebeb4039d (patch)
treeb1797dbfbdc806870771b73e68f5dccba5372c29 /makefile
parentb3dd0ea6decb1568570a2ebd8491fcd06919886e (diff)
downloadadvent-of-code-38a11596571d5281a9ba2c197d0e9cbebeb4039d.tar.gz
advent-of-code-38a11596571d5281a9ba2c197d0e9cbebeb4039d.tar.bz2
advent-of-code-38a11596571d5281a9ba2c197d0e9cbebeb4039d.zip
aoc 2025, day 9, alternative solution for part 2 using geos (shapely)
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile
index 536ac76..ed7a7b0 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/day09-geos: 2025/src/day09-geos.cpp | 2025/bin
66 c++ $(CPPFLAGS) -Wno-sign-conversion "-Wno-#warnings" $^ -lgeos -o $@
67
652025/bin/day10p2: 2025/src/day10p2.cpp | 2025/bin 682025/bin/day10p2: 2025/src/day10p2.cpp | 2025/bin
66 c++ $(CPPFLAGS) -Wno-sign-conversion $^ -lz3 -o $@ 69 c++ $(CPPFLAGS) -Wno-sign-conversion $^ -lz3 -o $@
67 70