Author: jelmer
Date: 2005-08-21 23:17:35 +0000 (Sun, 21 Aug 2005)
New Revision: 9459

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9459

Log:
Move pidl up one level (to prevent too much nesting)

Added:
   branches/SAMBA_4_0/source/pidl/
   branches/SAMBA_4_0/source/pidl/lib/
Removed:
   branches/SAMBA_4_0/source/build/pidl/
Modified:
   branches/SAMBA_4_0/source/main.mk
   branches/SAMBA_4_0/source/script/build_idl.sh


Changeset:
Modified: branches/SAMBA_4_0/source/main.mk
===================================================================
--- branches/SAMBA_4_0/source/main.mk   2005-08-21 22:48:13 UTC (rev 9458)
+++ branches/SAMBA_4_0/source/main.mk   2005-08-21 23:17:35 UTC (rev 9459)
@@ -127,21 +127,21 @@
 ctags:
        ctags `find $(srcdir) -name "*.[ch]"`
 
-idl_full: build/pidl/Parse/Pidl/IDL.pm
+idl_full: pidl/Parse/Pidl/IDL.pm
        @CPP="$(CPP)" PERL="$(PERL)" script/build_idl.sh FULL @PIDL_ARGS@
 
-idl: build/pidl/Parse/Pidl/IDL.pm
+idl: pidl/Parse/Pidl/IDL.pm
        @CPP="$(CPP)" PERL="$(PERL)" script/build_idl.sh PARTIAL @PIDL_ARGS@
 
-build/pidl/Parse/Pidl/IDL.pm: build/pidl/idl.yp
-       -yapp -s -m 'Parse::Pidl::IDL' -o build/pidl/Parse/Pidl/IDL.pm 
build/pidl/idl.yp 
+pidl/Parse/Pidl/IDL.pm: pidl/idl.yp
+       -yapp -s -m 'Parse::Pidl::IDL' -o pidl/Parse/Pidl/IDL.pm pidl/idl.yp 
 
-smb_interfaces: build/pidl/smb_interfaces.pm
-       $(PERL) -Ibuild/pidl script/build_smb_interfaces.pl \
+smb_interfaces: pidl/smb_interfaces.pm
+       $(PERL) -Ipidl script/build_smb_interfaces.pl \
                include/smb_interfaces.h
 
-build/pidl/smb_interfaces.pm: build/pidl/smb_interfaces.yp
-       -yapp -s -m 'smb_interfaces' -o build/pidl/smb_interfaces.pm 
build/pidl/smb_interfaces.yp 
+pidl/smb_interfaces.pm: pidl/smb_interfaces.yp
+       -yapp -s -m 'smb_interfaces' -o pidl/smb_interfaces.pm 
pidl/smb_interfaces.yp 
 
 include/config.h:
        @echo "include/config.h not present"

Copied: branches/SAMBA_4_0/source/pidl (from rev 9458, 
branches/SAMBA_4_0/source/build/pidl)

Modified: branches/SAMBA_4_0/source/script/build_idl.sh
===================================================================
--- branches/SAMBA_4_0/source/script/build_idl.sh       2005-08-21 22:48:13 UTC 
(rev 9458)
+++ branches/SAMBA_4_0/source/script/build_idl.sh       2005-08-21 23:17:35 UTC 
(rev 9459)
@@ -6,7 +6,7 @@
 
 [ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
 
-PIDL="$PERL -Ibuild/pidl ./build/pidl/pidl --outputdir librpc/gen_ndr --parse 
--ndr-header --header --ndr-parser --server --client --dcom-proxy --com-header 
--swig --odl --ejs $PIDL_EXTRA_ARGS"
+PIDL="$PERL -Ipidl ./pidl/pidl --outputdir librpc/gen_ndr --parse --ndr-header 
--header --ndr-parser --server --client --dcom-proxy --com-header --swig --odl 
--ejs $PIDL_EXTRA_ARGS"
 
 if [ x$FULLBUILD = xFULL ]; then
       echo Rebuilding all idl files in librpc/idl

Reply via email to