summaryrefslogtreecommitdiffstats
path: root/contrib/byacc/test/run_lint.sh
blob: 3230551045c7f29953b0d9b2af23e4e19a90f443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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
OpenPOWER on IntegriCloud