TSFILES := index.ts $(find lib -type f -name '*.ts')
|
|
|
|
gbuoy.js: parser.js $(TSFILES)
|
|
./node_modules/.bin/tsc --outFile $@ $(TSFILES)
|
|
|
|
parser.js: parser.pegjs
|
|
./node_modules/.bin/peggy -o $@ $<
|