A "high-level" language for the Gameboy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
206 B

TSFILES := $(find lib -type f -name '*.ts')
.PHONY: build
build: build/parser.js $(TSFILES)
./node_modules/.bin/tsc
build/parser.js: lib/parser.pegjs
mkdir -p build
./node_modules/.bin/peggy -o $@ $<