14
day04/Makefile
Normal file
14
day04/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
TARGET=Day04
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
.PHONY: run
|
||||
run: $(TARGET)
|
||||
./$(TARGET)
|
||||
|
||||
$(TARGET): $(TARGET).rs
|
||||
rustc $< -g
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm $(TARGET)
|
||||
Reference in New Issue
Block a user