summaryrefslogtreecommitdiffstats
path: root/src/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile
index 4899cc2..79b4489 100644
--- a/src/makefile
+++ b/src/makefile
@@ -9,7 +9,7 @@ core: venv
$(PYTHON) generate.py --target targets/core.json | rustfmt > core.rs
messaging: venv
- $(PYTHON) generate.py | rustfmt > messaging.rs
+ $(PYTHON) generate.py --target targets/messaging.json | rustfmt > messaging.rs
venv:
[ -d $(VENV) ] || (python3 -m venv $(DEFAULT_ENV) && VIRTUAL_ENV=$(VENV) $(VENV)/bin/pip install lark-parser)