Add day3 makefile

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2019-12-04 12:55:56 -05:00
parent 59ea108299
commit 1b05cae562

14
day03/Makefile Normal file
View File

@@ -0,0 +1,14 @@
TARGET=Day03
all: $(TARGET)
.PHONY: run
run: $(TARGET)
./$(TARGET)
$(TARGET): $(TARGET).hs
ghc -W $<
.PHONY: clean
clean:
rm $(TARGET)