Revision 978d4ed6bbf6e3a297a0ab63698c23e26bf00395 authored by Eric Prud'hommeaux on 24 November 2017, 06:08:45 UTC, committed by Eric Prud'hommeaux on 24 November 2017, 06:08:45 UTC
1 parent 3db81e1
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