menu/Makefile
2025-09-11 21:27:18 -06:00

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