mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 05:40:32 +01:00
Implement 2025 day 7 part 1 in Haskell
This commit is contained in:
14
2025/day07/Makefile
Normal file
14
2025/day07/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
.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
|
||||
Reference in New Issue
Block a user