aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2025-10-17 16:37:41 +0200
committerThomas Schmucker <ts@its1.de>2025-10-17 16:37:41 +0200
commit1d47028997c893535a2fd9064812a4a7cddaf5f6 (patch)
tree4943e349d710f15c7bd4b5f64baa60cb9e545574 /makefile
parentff958d47b0746d58ccdc08b90be94e43581a5813 (diff)
downloadadvent-of-code-1d47028997c893535a2fd9064812a4a7cddaf5f6.tar.gz
advent-of-code-1d47028997c893535a2fd9064812a4a7cddaf5f6.tar.bz2
advent-of-code-1d47028997c893535a2fd9064812a4a7cddaf5f6.zip
day 14, aoc 2016
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/makefile b/makefile
index 6efd32d..ffbddf4 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/day14: 2016/src/day14.cpp | 2016/bin
25 c++ $(CPPFLAGS) $^ -lmd -o $@
26
242016/bin/day05: 2016/src/day05.cpp | 2016/bin 272016/bin/day05: 2016/src/day05.cpp | 2016/bin
25 c++ $(CPPFLAGS) $^ -lmd -o $@ 28 c++ $(CPPFLAGS) $^ -lmd -o $@
26 29