Revision 49e3c3b7d2442510f34a8a66d11a5050ec880150 authored by Eric Prud'hommeaux on 08 January 2018, 11:51:26 UTC, committed by Eric Prud'hommeaux on 08 January 2018, 11:51:26 UTC
1 parent 9a2b736
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