From e0879b1fc2608befa6eee4dd8c2a82ade94e94ce Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Wed, 27 Aug 2025 04:18:43 +0300 Subject: day01/: rewrite solution to be in line with the template --- day01/Makefile | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'day01/Makefile') diff --git a/day01/Makefile b/day01/Makefile index c1bc66d..2fa98c0 100644 --- a/day01/Makefile +++ b/day01/Makefile @@ -1,13 +1 @@ -CXX := g++ -CXX_FLAGS := -std=c++23 -SOLUTION := solution.cpp -INPUT := input.txt -TARGET := solution.out - -all: compile run - -compile: - ${CXX} ${CXX_FLAGS} ${SOLUTION} -o ${TARGET} - -run: compile - ./${TARGET} < ${INPUT} +include ../aoc.mk -- cgit v1.2.3