Files
aoc_2025/day6/Makefile
Alessio Molinari 63c019f340 feat: add day6
2025-12-07 01:39:57 +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 && ./Day6 input_test.txt
release:
cp input.txt build
cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make && ./Day6 input.txt