Files
adventofcode-2019/day01/Makefile

12 lines
111 B
Makefile
Raw Normal View History

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