Files
aoc_2025/day4/Makefile
Alessio Molinari f26bb3b1bc feat: add day4
2025-12-04 21:19:59 +01:00

14 lines
238 B
Makefile

clear:
rm -rf build/*
run:
cp input.txt build
cp input_test.txt build
cd build && cmake .. && make && ./Day4 input_test.txt
release:
cp input.txt build
cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make && ./Day4 input.txt