mirror of
https://github.com/samba-team/samba.git
synced 2025-11-26 04:23:49 +03:00
rather then a large table in librpc/gen_ndr/tables.c. This will allow us to only link in only the required gen_ndr files (speeds up linking quite a bit, makes binaries smaller). Each gen_ndr_* file now has a init function that calls the init functions of the interfaces it contains. I did it this way to keep pidl's code simple, though it might hurt startup time a bit. I'd be happy to change it if people like one function better.
42 lines
947 B
Bash
Executable File
42 lines
947 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"
|
|
EPARSERPIDL="$PERL ./build/pidl/pidl.pl --output $EPARSERPREFIX/ndr_ --parse --header --eparser"
|
|
|
|
if [ x$FULLBUILD = xFULL ]; then
|
|
echo Rebuilding all idl files in librpc/idl
|
|
$PIDL librpc/idl/*.idl || exit 1
|
|
exit 0
|
|
fi
|
|
|
|
if [ x$FULLBUILD = xEPARSER ]; then
|
|
echo Rebuilding all idl files in librpc/idl
|
|
$EPARSERPIDL librpc/idl/*.idl || 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
|
|
fi
|
|
|
|
exit 0
|