aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2023-12-03 15:16:24 +0100
committerThomas Schmucker <ts@its1.de>2023-12-03 15:16:24 +0100
commit5708a617b10e328c499da837d764a51e98d8bcc0 (patch)
tree7a8f6211eece341338c1917990b4cf7f14b1cd1a /makefile
parentfc4fbbc41d275a187d026042eb88a92153ccaa80 (diff)
downloadadvent-of-code-5708a617b10e328c499da837d764a51e98d8bcc0.tar.gz
advent-of-code-5708a617b10e328c499da837d764a51e98d8bcc0.tar.bz2
advent-of-code-5708a617b10e328c499da837d764a51e98d8bcc0.zip
Lösung für Tag3
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/makefile b/makefile
index cdacbd2..9d0c4c9 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,8 @@
1include config.mk 1include config.mk
2 2
3all: bin/day01 bin/day02 3all: bin/day01 \
4 bin/day02 \
5 bin/day03
4 6
5bin/%: src/%.cpp | bin 7bin/%: src/%.cpp | bin
6 c++ $(CPPFLAGS) $^ -o $@ 8 c++ $(CPPFLAGS) $^ -o $@