1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

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

This commit is contained in:
Jelmer Vernooij 2005-08-21 23:17:35 +00:00 committed by Gerald (Jerry) Carter
parent 7548a5012a
commit e48202275e
41 changed files with 9 additions and 9 deletions

View File

@ -127,21 +127,21 @@ etags:
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"

View File

@ -6,7 +6,7 @@ PIDL_EXTRA_ARGS="$*"
[ -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