AppFlowy/Makefile

15 lines
402 B
Makefile
Raw Normal View History

2021-11-06 15:27:30 +00:00
.PHONY: flowy_dev install_cargo_make
2021-11-06 12:35:04 +00:00
2021-11-06 15:27:30 +00:00
flowy_dev: install_cargo_make
2021-11-06 12:35:04 +00:00
cargo make flowy_dev
2021-11-16 08:19:49 +00:00
install_cargo_make:
2021-11-06 15:27:30 +00:00
cargo install --force cargo-make
2021-11-16 08:19:49 +00:00
brew bundle
2021-11-06 15:27:30 +00:00
2021-11-06 12:35:04 +00:00
install_rust:
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
echo 'export PATH="$$HOME/.cargo/bin:$$PATH"' >> ~/.bash_profile
2021-11-16 08:19:49 +00:00
source ~/.bash_profile