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

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