Revision 25c7ba163bfb8c4728dcc18dbb5bfe19cf61bde0 authored by Eric Prud'hommeaux on 03 April 2021, 13:58:51 UTC, committed by Eric Prud'hommeaux on 03 April 2021, 13:58:51 UTC
1 parent 0f05ba2
Raw File
Makefile
JISON?=./node_modules/jison/lib/cli.js

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

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

build: ./lib/ShExJison.js ./lib/ShapeMapJison.js

test: build
	(cd test && make test)

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

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

back to top