langcmp/rust/Makefile
2023-08-24 08:53:49 +02:00

14 lines
154 B
Makefile

RUSTC := rustc
SRC = sleeptest.rs
OUT = sleeptest
.PHONY: clean
all: $(OUT)
$(OUT): $(SRC)
$(RUSTC) -C symbols -o $(OUT) $(SRC)
clean:
rm -f $(OUT)