From 8c96639ec1f6757570510fc27f1c5fabece35eaf Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Sun, 16 Nov 2025 13:23:34 +0100 Subject: aoc 2018, days 1-11 --- makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index 22a1c4b..96783ec 100644 --- a/makefile +++ b/makefile @@ -3,6 +3,7 @@ include config.mk all: $(patsubst 2015/src/%.cpp,2015/bin/%,$(wildcard 2015/src/*.cpp)) \ $(patsubst 2016/src/%.cpp,2016/bin/%,$(wildcard 2016/src/*.cpp)) \ $(patsubst 2017/src/%.cpp,2017/bin/%,$(wildcard 2017/src/*.cpp)) \ + $(patsubst 2018/src/%.cpp,2018/bin/%,$(wildcard 2018/src/*.cpp)) \ $(patsubst 2020/src/%.cpp,2020/bin/%,$(wildcard 2020/src/*.cpp)) \ $(patsubst 2022/src/%.cpp,2022/bin/%,$(wildcard 2022/src/*.cpp)) \ $(patsubst 2023/src/%.cpp,2023/bin/%,$(wildcard 2023/src/*.cpp)) \ @@ -35,6 +36,10 @@ all: $(patsubst 2015/src/%.cpp,2015/bin/%,$(wildcard 2015/src/*.cpp)) \ 2017/bin/%: 2017/src/%.cpp | 2017/bin c++ $(CPPFLAGS) $^ -o $@ +# 2018 +2018/bin/%: 2018/src/%.cpp | 2018/bin + c++ $(CPPFLAGS) $^ -o $@ + # 2020 2020/bin/%: 2020/src/%.cpp | 2020/bin c++ $(CPPFLAGS) $^ -o $@ -- cgit v1.3