Revision e7dd40296e0a70ee6c3e31bd7352df8d6e5c5405 authored by Eric Prud'hommeaux on 08 June 2018, 14:23:23 UTC, committed by GitHub on 08 June 2018, 14:23:23 UTC
~ set foreground color when changing background color
2 parent s ec82f2b + 524fe30
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