aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-01-12 17:36:26 +0100
committerThomas Schmucker <ts@its1.de>2025-01-12 17:36:26 +0100
commitd396dc3221fcf893c885bd9a370b9a30f25b31dd (patch)
treef003b49ea2601a54926a2ef3de3b06f0f897dc37 /makefile
parenta8f11c0a8470c4e6b67e70219986712cd70d0de2 (diff)
downloadadvent-of-code-d396dc3221fcf893c885bd9a370b9a30f25b31dd.tar.gz
advent-of-code-d396dc3221fcf893c885bd9a370b9a30f25b31dd.tar.bz2
advent-of-code-d396dc3221fcf893c885bd9a370b9a30f25b31dd.zip
aoc 2016, days 4, 5, 6
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile
index 5ce2c9a..ffd0a23 100644
--- a/makefile
+++ b/makefile
@@ -21,6 +21,9 @@ all: $(patsubst 2015/src/%.cpp,2015/bin/%,$(wildcard 2015/src/*.cpp)) \
212016/bin/%: 2016/src/%.cpp | 2016/bin 212016/bin/%: 2016/src/%.cpp | 2016/bin
22 c++ $(CPPFLAGS) $^ -o $@ 22 c++ $(CPPFLAGS) $^ -o $@
23 23
242016/bin/day05: 2016/src/day05.cpp | 2016/bin
25 c++ $(CPPFLAGS) $^ -lmd -o $@
26
24# 2020 27# 2020
252020/bin/%: 2020/src/%.cpp | 2020/bin 282020/bin/%: 2020/src/%.cpp | 2020/bin
26 c++ $(CPPFLAGS) $^ -o $@ 29 c++ $(CPPFLAGS) $^ -o $@