summaryrefslogtreecommitdiffstats
path: root/day01/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'day01/Makefile')
-rw-r--r--day01/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/day01/Makefile b/day01/Makefile
new file mode 100644
index 0000000..c1bc66d
--- /dev/null
+++ b/day01/Makefile
@@ -0,0 +1,13 @@
1CXX := g++
2CXX_FLAGS := -std=c++23
3SOLUTION := solution.cpp
4INPUT := input.txt
5TARGET := solution.out
6
7all: compile run
8
9compile:
10 ${CXX} ${CXX_FLAGS} ${SOLUTION} -o ${TARGET}
11
12run: compile
13 ./${TARGET} < ${INPUT}