TARGET=Day01

.PHONY: all
all: $(TARGET)

$(TARGET): Day01.rs
	rustc $<

.PHONY: clean
clean:
	rm $(TARGET) -f
