summaryrefslogtreecommitdiff
path: root/source4/script/yacc_compile.sh
blob: 77b5efb06f88e8a269be04bee6c6b45eae35a1a8 (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

YACC="$1"
SRC="$2"
DEST="$3"

dir=`dirname $SRC`
file=`basename $SRC`
base=`basename $SRC .y`
if [ -z "$YACC" ]; then
	echo "yacc not found"
	exit;
fi
if [ -r $DEST ]; then
	if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then
		exit;
	fi
fi
TOP=`pwd`
if cd $dir && $YACC -d $file; then
	if [ -r y.tab.h -a -r y.tab.c ];then
		echo "move files"
		sed -e "/^#/!b" -e "s|y\.tab\.h|$base.h|" y.tab.h > $base.h
		sed '/^#/ s|y\.tab\.c|$base.c|' y.tab.c > $base.c
		rm -f y.tab.c y.tab.h
	fi
fi
cd $TOP