Files
adventofcode-2019/day05/Makefile

12 lines
115 B
Makefile
Raw Normal View History

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