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