mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-17 04:21:49 +08:00
13 lines
264 B
Makefile
13 lines
264 B
Makefile
# 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
|
|
|