aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-10-16 18:08:53 +0200
committerThomas Schmucker <ts@its1.de>2025-10-16 18:08:53 +0200
commit5dde3837a6ecbd372b2d5db0b12969a4b7fbf4f7 (patch)
tree7c8817bcb739319fedfb40e1e5d1a1b2d578beef /makefile
parent7af390a45aee5133ae83114983f4d461d76a837b (diff)
downloadadvent-of-code-5dde3837a6ecbd372b2d5db0b12969a4b7fbf4f7.tar.gz
advent-of-code-5dde3837a6ecbd372b2d5db0b12969a4b7fbf4f7.tar.bz2
advent-of-code-5dde3837a6ecbd372b2d5db0b12969a4b7fbf4f7.zip
day 11, aoc 2016
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index ffd0a23..6efd32d 100644
--- a/makefile
+++ b/makefile
@@ -37,14 +37,14 @@ all: $(patsubst 2015/src/%.cpp,2015/bin/%,$(wildcard 2015/src/*.cpp)) \
37 c++ $(CPPFLAGS) $^ -o $@ 37 c++ $(CPPFLAGS) $^ -o $@
38 38
392023/bin/day24: 2023/src/day24.cpp | 2023/bin 392023/bin/day24: 2023/src/day24.cpp | 2023/bin
40 c++ $(CPPFLAGS) -Wno-sign-conversion -I/usr/local/include $^ -L/usr/local/lib -lz3 -o $@ 40 c++ $(CPPFLAGS) -Wno-sign-conversion $^ -lz3 -o $@
41 41
42# 2024 42# 2024
432024/bin/%: 2024/src/%.cpp | 2024/bin 432024/bin/%: 2024/src/%.cpp | 2024/bin
44 c++ $(CPPFLAGS) $^ -o $@ 44 c++ $(CPPFLAGS) $^ -o $@
45 45
462024/bin/day13-z3: 2024/src/day13-z3.cpp | 2024/bin 462024/bin/day13-z3: 2024/src/day13-z3.cpp | 2024/bin
47 c++ $(CPPFLAGS) $^ -L/usr/local/lib -lz3 -o $@ 47 c++ $(CPPFLAGS) $^ -lz3 -o $@
48 48
49clean: 49clean:
50 rm -rf 2015/bin 2016/bin 2020/bin 2022/bin 2023/bin 2024/bin 50 rm -rf 2015/bin 2016/bin 2020/bin 2022/bin 2023/bin 2024/bin