TARGET=Day05

.PHONY: all
all: $(TARGET)

$(TARGET): $(TARGET).rs
	rustc $<

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