Add day06

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2019-12-07 20:37:50 -05:00
parent 491bb87ee3
commit 2cd3fd8efa
2 changed files with 147 additions and 0 deletions

15
day06/Makefile Normal file
View File

@@ -0,0 +1,15 @@
TARGET=Day06
.PHONY: all
all: $(TARGET)
.PHONY: run
run: $(TARGET)
./$(TARGET)
$(TARGET): $(TARGET).rs
rustc $<
.PHONY: clean
clean:
rm $(TARGET) -f