Revision 42e9fdf3333dc4601fae3f0e50234233a2c27b86 authored by Eric Prud'hommeaux on 11 September 2017, 08:20:59 UTC, committed by Eric Prud'hommeaux on 11 September 2017, 08:20:59 UTC
1 parent 5ad4dbc
Raw File
Makefile
JISON?=./node_modules/jison/lib/cli.js

./lib/ShExJison.js: ./lib/ShExJison.jison
	$(JISON) $^ -o $@ -p lalr

build: ./lib/ShExJison.js

test: build
	(cd test && make test)

publish-npm: ./lib/ShExJison.js
	npm publish

earl: ./bin/_genEARL.js
	$^ > doc/earl.ttl

back to top