Files
adventofcode-2019/day03/Makefile

15 lines
147 B
Makefile
Raw Normal View History

TARGET=Day03
all: $(TARGET)
.PHONY: run
run: $(TARGET)
./$(TARGET)
$(TARGET): $(TARGET).rs
rustc $< -g -O
.PHONY: clean
clean:
rm $(TARGET)