bolt/Makefile
2020-06-03 08:22:00 +02:00

19 lines
258 B
Makefile

all: src/ast.ts
bolt check test.bolt --no-std
src/ast.ts: src/ast-spec.ts
@echo "Generating AST definitions ..."
@mkdir -p lib/
@tsastgen src/ast-spec.ts:src/ast.ts
.PHONY: clean
clean:
rm -rf src/ast.ts
.PHONY: distclean
distclean:
rm -rf lib/