summaryrefslogtreecommitdiffstats
path: root/day01/Makefile
blob: c1bc66db60181d094755d359efd7767c9356e33b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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}