Revision 9e8d6a2a7450b9131a50d2f18875223459a59c18 authored by Eric Prud'hommeaux on 09 January 2023, 11:05:38 UTC, committed by Eric Prud'hommeaux on 09 January 2023, 16:03:53 UTC
1 parent 1c684b3
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