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