blob: cdf7739cd9f0534ad8e0aa3050b67b6b96591994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
# $Id: run_lint.sh,v 1.3 2014/03/28 23:40:27 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
ifBTYACC=`fgrep -l 'define YYBTYACC' config.h > /dev/null; test $? != 0; echo $?`
if test $ifBTYACC = 0; then
REF_DIR=${TEST_DIR}/yacc
else
REF_DIR=${TEST_DIR}/btyacc
fi
echo '** '`date`
for i in ${REF_DIR}/*.c
do
make -f $PROG_DIR/makefile lint C_FILES=$i srcdir=$PROG_DIR
done
|