Files
adventofcode-2019/day04/Makefile

15 lines
144 B
Makefile
Raw Normal View History

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