Skip to content

Commit 80a835c

Browse files
committed
Fix readme after makefile -> justfile transition
1 parent 77ffaa4 commit 80a835c

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff 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

121125
There 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
```

0 commit comments

Comments
 (0)