File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -113,21 +113,25 @@ The source comprises two parts:
113113- the ` src/ast/* ` generated by ` tools/generate_ast.py `
114114- the rest
115115
116- To get a release build just use ` make ` :
116+ To get a release build you can use ` just ` :
117117``` sh
118- $ make
118+ $ just
119+ ```
120+ Or use cargo:
121+ ``` sh
122+ $ cargo build --release --verbose
119123```
120124
121125There are also a couple of useful dev commands like:
122126``` sh
123127# run REPL in watch mode
124- $ make watch
128+ $ just watch
125129
126130# run the `sample_program.lux` in watch mode
127- # (script source overridable with sample_program_path in makefile )
128- $ make watch_sample
131+ # (script source overridable with sample_program_path in justfile )
132+ $ just watch_sample
129133
130134# run the `generate_ast.py` script with mypy checks in watch mode
131- # (script source overridable with generate_ast_path in makefile )
132- $ make watch_generate_ast
135+ # (script source overridable with generate_ast_path in justfile )
136+ $ just watch_generate_ast
133137```
You can’t perform that action at this time.
0 commit comments