1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00
samba-mirror/source4/script/lex_compile.sh
2007-10-10 13:31:12 -05:00

25 lines
420 B
Bash
Executable File

#!/bin/sh
LEX="$1"
SRC="$2"
DEST="$3"
dir=`dirname $SRC`
file=`basename $SRC`
base=`basename $SRC .l`
if [ -z "$LEX" ]; then
echo "lex not found - not regenerating $DEST"
return;
fi
if [ -r $DEST ]; then
if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then
return;
fi
fi
TOP=`pwd`
if cd $dir && $LEX $file; then
sed '/^#/ s|$base.yy\.c|$DEST|' $base.yy.c > $base.c
rm -f $base.yy.c
fi
cd $TOP