File: Makefile

package info (click to toggle)
node-ebnf-parser 0.1.10%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 168 kB
  • sloc: yacc: 236; makefile: 16
file content (24 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

all: install build test

install:
#	npm install

build:
	jison bnf.y bnf.l
	mv bnf.js parser.js

	jison ebnf.y
	mv ebnf.js transform-parser.js

test:
	nodejs tests/all-tests.js




clean:

superclean: clean
	-find . -type d -name 'node_modules' -exec rm -rf "{}" \;