Files
seer/tests/hellorust/Makefile
T

11 lines
115 B
Makefile
Raw Normal View History

2023-04-28 20:28:06 -05:00
.PHONY: all
all: hellorust
hellorust: hellorust.rs
rustc -g hellorust.rs
.PHONY: clean
clean:
rm -f hellorust