toymk/Makefile

11 lines
147 B
Makefile
Raw Normal View History

2020-12-07 06:08:12 +00:00
TARGET_TRIPLE = target.json
all:
cargo build --target $(TARGET_TRIPLE)
watch:
cargo watch -x "check --target $(TARGET_TRIPLE)"
.PHONY: watch