keyboard-layout-editor/Makefile
Ian Prest d0ba759ddb Switched to new JSONL parser
The new parser is generated by Jison (a JS parser generator, like
Bison).
-- Modified one of the Jison samples to support our "leniency"
requirement.
-- Added a makefile to build & minify the parser.
-- The new parser also generates better error messages... but they
expect to be displayed in a console.  So I changed the error alert DIV
to use a fixed-width font.
2013-10-15 22:36:51 -04:00

8 lines
No EOL
121 B
Makefile

all: js/jsonl.min.js
%.min.js : %.js
uglifyjs "$^" > "$@"
js/%.js : %.grammar.js
node "$^" > "$@"
.PRECIOUS : js/%.js