bolt/treegen/Makefile

12 lines
207 B
Makefile
Raw Normal View History

2020-05-30 11:29:08 +02:00
all: lib/parser.js
lib/parser.js: src/parser.pegjs
@echo "Generating parser ..."
@mkdir -p lib/
@if ! pegjs --output lib/parser.js src/parser.pegjs; then \
rm -rf lib/parser.js; \
exit 1; \
fi