- added the rest of the LSA calls as stubs
[samba.git] / source4 / script / build_idl.sh
1 #!/bin/bash
2
3 for f in librpc/idl/*.idl; do
4     echo Processing $f
5     base=`basename $f .idl`
6     ndr=librpc/ndr/ndr_$base
7     pidl.pl --output $ndr --parse --header --parser --client librpc/rpc/rpc_$base.c $f || exit 1
8 done
9
10 exit 0