14 lines
137 B
Makefile
14 lines
137 B
Makefile
menu: menu.rs
|
|
rustc -o $@ $@.rs
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f menu
|
|
|
|
.PHONY: test
|
|
test: menu
|
|
./menu <test
|
|
|
|
.PHONY: install
|
|
install: menu
|