2021-03-30 15:50:11 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-04-21 15:16:37 +03:00
|
|
|
# Clean old grammars builds
|
|
|
|
cargo clean --manifest-path ./enums/Cargo.toml
|
2021-03-31 00:41:13 +03:00
|
|
|
|
|
|
|
# Recreate all grammars
|
2021-04-21 15:16:37 +03:00
|
|
|
cargo run --manifest-path ./enums/Cargo.toml -- -lrust -o ./src/languages
|
2021-03-30 15:50:11 +03:00
|
|
|
|
2021-09-29 14:49:30 +03:00
|
|
|
# Recreate C macros
|
|
|
|
cargo run --manifest-path ./enums/Cargo.toml -- -lc_macros -o ./src/c_langs_macros
|
|
|
|
|
2021-03-31 00:41:13 +03:00
|
|
|
# Format the code of the recreated grammars
|
2021-03-30 15:50:11 +03:00
|
|
|
cargo fmt
|