bolt/Makefile

20 lines
258 B
Makefile
Raw Normal View History

2020-05-10 11:58:31 +02:00
2020-06-03 08:22:00 +02:00
all: src/ast.ts
bolt check test.bolt --no-std
2020-05-10 15:56:34 +02:00
2020-06-03 08:22:00 +02:00
src/ast.ts: src/ast-spec.ts
2020-05-10 11:58:31 +02:00
@echo "Generating AST definitions ..."
@mkdir -p lib/
2020-06-03 08:22:00 +02:00
@tsastgen src/ast-spec.ts:src/ast.ts
2020-05-10 11:58:31 +02:00
.PHONY: clean
clean:
2020-06-03 08:22:00 +02:00
rm -rf src/ast.ts
2020-05-10 11:58:31 +02:00
.PHONY: distclean
distclean:
rm -rf lib/