98e903e7a0
bison, keeping full compatibility with our previous yacc implementation. Also bring the ability to create reentrant parser This fix bin/140309 [1] PR: bin/140309 [1] Submitted by: Philippe Pepiot <ksh@philpep.org> [1] Approved by: des (mentor) MFC after: 1 month
21 lines
336 B
Bash
Executable File
21 lines
336 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: run_lint.sh,v 1.1 2010/06/08 09:00:58 tom Exp $
|
|
# vi:ts=4 sw=4:
|
|
|
|
# run lint on each of the ".c" files in the test directory
|
|
|
|
if test $# = 1
|
|
then
|
|
PROG_DIR=`pwd`
|
|
TEST_DIR=$1
|
|
else
|
|
PROG_DIR=..
|
|
TEST_DIR=.
|
|
fi
|
|
|
|
echo '** '`date`
|
|
for i in ${TEST_DIR}/*.c
|
|
do
|
|
make -f $PROG_DIR/makefile lint C_FILES=$i srcdir=$PROG_DIR
|
|
done
|