Files
adventofcode/2025/day07/Makefile

15 lines
158 B
Makefile

.PHONY: all clean test
all: solve
test: solve
./solve sample.txt
solve: solve.hs
ghc -dynamic -O -g -o $@ $^
clean:
$(RM) solve
$(RM) *.o
$(RM) *.hi