summaryrefslogtreecommitdiff
path: root/source4/script/build_idl.sh
blob: a456f479fd6a54a89c4ddb6feeeaf5fd5b7f911e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

for f in librpc/idl/*.idl; do
    echo Processing $f
    base=`basename $f .idl`
    ndr=librpc/ndr/ndr_$base
    $HOME/pidl/pidl.pl --output $ndr --parse --header --parser $f || exit 1
done

exit 0