From 668c938678fd7f08ca1ad3412d090f487295211f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 8 Nov 2003 13:23:20 +0000 Subject: - more generation fixes - added auto-generation from the Makefile. Only called when you run "make idl" (This used to be commit 47a17e5a08dcb5ef2880f75a59bf417e161a71d3) --- source4/script/build_idl.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 source4/script/build_idl.sh (limited to 'source4/script') diff --git a/source4/script/build_idl.sh b/source4/script/build_idl.sh new file mode 100755 index 0000000000..a456f479fd --- /dev/null +++ b/source4/script/build_idl.sh @@ -0,0 +1,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 -- cgit