summaryrefslogtreecommitdiff
path: root/source4/build/make/yacc_compile.sh
blob: ac4afea3f6094b943cea6f5b8b163622e958b105 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh

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

dir=`dirname $SRC`
file=`basename $SRC`
base=`basename $SRC .y`
if [ -z "$YACC" ]; then
	# if $DEST is more recent than $SRC, we can just touch
	# otherwise we touch but print out warnings
	if [ -r $DEST ]; then
		if [ x`find $SRC -newer $DEST -print` = x$SRC ]; then
			echo "warning: yacc not found - cannot generate $SRC => $DEST" >&2
			echo "warning: yacc not found - only updating the timestamp of $DEST" >&2
		fi
		touch $DEST;
		exit;
	fi
	echo "error: yacc not found - cannot generate $SRC => $DEST" >&2
	exit 1;
fi
# if $DEST is more recent than $SRC, we can just touch
if [ -r $DEST ]; then
	if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then
		touch $DEST;
		exit;
	fi
fi
TOP=`pwd`
echo "info: running $YACC -d $file"
if cd $dir && $YACC -d $file; then
	if [ -r y.tab.h -a -r y.tab.c ];then
		echo "info: move y.tab.h to $base.h"
		sed -e "/^#/!b" -e "s|y\.tab\.h|$SRC|" -e "s|\"$base.y|\"$SRC|"  y.tab.h > $base.h
		echo "info: move y.tab.c to $base.c"
		sed -e "s|y\.tab\.c|$SRC|" -e "s|\"$base.y|\"$SRC|" y.tab.c > $base.c
		rm -f y.tab.c y.tab.h
	elif [ ! -r $base.h -a ! -r $base.c]; then
		echo "$base.h nor $base.c generated."
		exit 1
	fi
fi
cd $TOP