mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
11 lines
115 B
Makefile
11 lines
115 B
Makefile
.PHONY: all
|
|
all: hellorust
|
|
|
|
hellorust: hellorust.rs
|
|
rustc -g hellorust.rs
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellorust
|
|
|