Files
aoc_2025/day7/Makefile
Alessio Molinari ff17ec32a6 feat: add day7
2025-12-08 00:37:45 +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 && ./Day7 input_test.txt
release:
cp input.txt build
cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make && ./Day7 input.txt