Makefile 389 B

12345678910111213
  1. .PHONY: flowy_dev install_cargo_make
  2. flowy_dev: install_cargo_make
  3. cargo make flowy_dev
  4. install_cargo_make:
  5. cargo install --force cargo-make
  6. install_rust:
  7. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
  8. curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
  9. echo 'export PATH="$$HOME/.cargo/bin:$$PATH"' >> ~/.bash_profile
  10. source ~/.bash_profile