libcli/cldap: make use of samba_tevent_context_init()
[Samba/gebeck_regimport.git] / librpc / build_idl.sh
blobf5901db7e60468033c30489f4943e5a68b7e91c5
1 #!/bin/sh
3 if [ "$1" = "--full" ]; then
4 FULL=1
5 shift 1
6 else
7 FULL=0
8 fi
10 ARGS="--outputdir $PIDL_OUTPUTDIR --header --ndr-parser --samba3-ndr-server --server --client --python --dcom-proxy --com-header $PIDL_ARGS --"
11 IDL_FILES="$*"
13 oldpwd=`pwd`
14 cd ${srcdir}
16 [ -d $PIDL_OUTPUTDIR ] || mkdir -p $PIDL_OUTPUTDIR || exit 1
18 PIDL_DIR=`dirname $PIDL`
19 PIDL_CMD="$PIDL $ARGS"
21 if [ $FULL = 1 ]; then
22 echo "Rebuilding all idl files"
23 $PIDL_CMD $IDL_FILES || exit 1
24 exit 0
28 ## Find newer files rather than rebuild all of them. Also handle the case
29 ## where the pidl compiler itself is newer.
31 PIDL_NEWEST=`find $PIDL_DIR -type f -print | xargs ls -rt | tail -1`
32 echo "jfyi: PIDL_NEWEST is $PIDL_NEWEST"
34 list=""
35 for f in ${IDL_FILES}; do
36 b=`basename $f .idl`
37 outfiles="$b.h ndr_${b}_c.c ndr_$b.h ndr_${b}_s.c srv_$b.c"
38 outfiles="$outfiles ndr_$b.c ndr_${b}_c.h py_$b.c srv_$b.h"
40 for o in $outfiles; do
41 [ -f $PIDL_OUTPUTDIR/$o ] || {
42 list="$list $f"
43 break
45 test "`find $f -newer $PIDL_OUTPUTDIR/$o`" != "" && {
46 list="$list $f"
47 break
49 test "`find $PIDL_NEWEST -newer $PIDL_OUTPUTDIR/$o`" != "" && {
50 list="$list $f"
51 break
53 done
54 done
57 ## generate the ndr stubs
60 if [ "x$list" != x ]; then
61 # echo "${PIDL_CMD} ${list}"
62 $PIDL_CMD $list || exit 1
65 cd ${oldpwd}
67 exit 0