aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2023-12-04 20:22:10 +0100
committerThomas Schmucker <ts@its1.de>2023-12-04 20:22:10 +0100
commit50b228ef89d275b489eb023557c07b5e6cb0370e (patch)
tree8249186337776573dab42a3b6cd5873dccfba119 /makefile
parentf5c8c5c57a2f5b0186c9c22bc2318449e875e01b (diff)
downloadadvent-of-code-50b228ef89d275b489eb023557c07b5e6cb0370e.tar.gz
advent-of-code-50b228ef89d275b489eb023557c07b5e6cb0370e.tar.bz2
advent-of-code-50b228ef89d275b489eb023557c07b5e6cb0370e.zip
Lösung für Tag4
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index 9d0c4c9..7643188 100644
--- a/makefile
+++ b/makefile
@@ -2,7 +2,8 @@ include config.mk
2 2
3all: bin/day01 \ 3all: bin/day01 \
4 bin/day02 \ 4 bin/day02 \
5 bin/day03 5 bin/day03 \
6 bin/day04
6 7
7bin/%: src/%.cpp | bin 8bin/%: src/%.cpp | bin
8 c++ $(CPPFLAGS) $^ -o $@ 9 c++ $(CPPFLAGS) $^ -o $@