summaryrefslogtreecommitdiffstats
path: root/freebsd-userspace/lib/libc/net/Makefile
blob: 895d167c4c9f70936baf9c689929eb0df104744d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# lib/libc/net Yacc and lex files

nslexer.c: nslexer.l
	${LEX} -P _nsyy -t $^ | \
		sed -e '/YY_BUF_SIZE/s/16384/1024/' >$@

nsparser.c: nsparser.y
	yacc -d -p_nsyy -o nsparser.i $^
	cat nsparser.i | \
		sed -e '/YY_BUF_SIZE/s/16384/1024/' >$@
	rm -f nsparser.i