Files
adventofcode-2019/day06/Makefile

16 lines
156 B
Makefile
Raw Normal View History

TARGET=Day06
.PHONY: all
all: $(TARGET)
.PHONY: run
run: $(TARGET)
./$(TARGET)
$(TARGET): $(TARGET).rs
rustc $<
.PHONY: clean
clean:
rm $(TARGET) -f