mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 12:50:32 +01:00
15 lines
155 B
Makefile
15 lines
155 B
Makefile
.PHONY: all clean test
|
|
|
|
all: solve
|
|
|
|
test: solve
|
|
./solve sample.txt
|
|
|
|
solve: solve.hs
|
|
ghc -dynamic -O -o $@ $^
|
|
|
|
clean:
|
|
$(RM) solve
|
|
$(RM) *.o
|
|
$(RM) *.hi
|