From df5949efb425668f8e7ae38c0c858bd90529255a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 28 Nov 2003 00:48:05 +0000 Subject: added auto-generation of the IDL interface tables. This makes two less places that need to be edited when someone adds a new IDL file. (This used to be commit ccd9ddeed679baa6cbb05ac728b381b50420e00f) --- source4/script/build_idl.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/script/build_idl.sh') diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh index 9ad9391ee0..b31d26c23d 100755 --- a/source4/script/build_idl.sh +++ b/source4/script/build_idl.sh @@ -8,10 +8,14 @@ FULLBUILD=$1 ( cd build/pidl && make ) || exit 1 PIDL="build/pidl/pidl.pl --output librpc/gen_ndr/ndr_ --parse --header --parser --client librpc/gen_rpc/rpc_" +TABLES="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 0 fi -- cgit