Revision e0072d7d1842b53234aff90dea73d2f7abf5a410 authored by Eric Prud'hommeaux on 29 September 2018, 07:05:24 UTC, committed by Eric Prud'hommeaux on 29 September 2018, 07:05:24 UTC
2 parent s 0168d71 + fa8d987
Raw File
Makefile
JISON?=./node_modules/jison/lib/cli.js

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

./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