1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00
samba-mirror/source4/script/build_idl.sh
Tim Potter ff19c6ac0d r2255: Don't do experimental swig stuff by default.
(This used to be commit db191572ff9351ae84dc0c3d6302fa60b61cd179)
2007-10-10 12:58:35 -05:00

40 lines
896 B
Bash
Executable File

#!/bin/sh
FULLBUILD=$1
[ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
PIDL="$PERL ./build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --server"
TABLES="$PERL ./build/pidl/tables.pl --output librpc/gen_ndr/tables"
if [ x$FULLBUILD = xFULL ]; then
echo Rebuilding all idl files in librpc/idl
$PIDL librpc/idl/*.idl || exit 1
echo Rebuilding IDL tables
$TABLES librpc/gen_ndr/ndr_*.h || exit 1
exit 0
fi
list=""
for f in librpc/idl/*.idl; do
basename=`basename $f .idl`
ndr="librpc/gen_ndr/ndr_$basename.c"
# blergh - most shells don't have the -nt function
if [ -f $ndr ]; then
if [ x`find $f -newer $ndr -print` = x$f ]; then
list="$list $f"
fi
else
list="$list $f"
fi
done
if [ "x$list" != x ]; then
$PIDL $list || exit 1
$TABLES librpc/gen_ndr/ndr_*.h || exit 1
fi
exit 0