aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2023-12-01 21:37:56 +0100
committerThomas Schmucker <ts@its1.de>2023-12-01 21:37:56 +0100
commit3b9678982f745acf5f94f88ac6e4eb9cb824a806 (patch)
tree404cc1afc8d9dc5ec190624c7c71321c658ca928 /makefile
parent9a164c3f65c01e31a9d1a8578e29b358972ddfed (diff)
downloadadvent-of-code-3b9678982f745acf5f94f88ac6e4eb9cb824a806.tar.gz
advent-of-code-3b9678982f745acf5f94f88ac6e4eb9cb824a806.tar.bz2
advent-of-code-3b9678982f745acf5f94f88ac6e4eb9cb824a806.zip
Aufräumen
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/makefile b/makefile
index 69242b1..3facda7 100644
--- a/makefile
+++ b/makefile
@@ -2,10 +2,7 @@ include config.mk
2 2
3all: bin/01a bin/01b 3all: bin/01a bin/01b
4 4
5bin/01a: obj/01a.o | bin 5bin/%: obj/%.o | bin
6 c++ $(LDFLAGS) $^ -o $@
7
8bin/01b: obj/01b.o | bin
9 c++ $(LDFLAGS) $^ -o $@ 6 c++ $(LDFLAGS) $^ -o $@
10 7
11obj/%.o: src/%.cpp | obj 8obj/%.o: src/%.cpp | obj