Files
adventofcode-2019/day03/Makefile

15 lines
142 B
Makefile
Raw Normal View History

TARGET=Day03
all: $(TARGET)
.PHONY: run
run: $(TARGET)
./$(TARGET)
$(TARGET): $(TARGET).hs
ghc -W $<
.PHONY: clean
clean:
rm $(TARGET)