mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r9460: - Move pidl to lib/. This fixes standalone installation of pidl.
- Update the README - Allow building the docs stand-alone
This commit is contained in:
parent
e48202275e
commit
b56084ce25
@ -1,10 +1,9 @@
|
|||||||
use ExtUtils::MakeMaker;
|
use ExtUtils::MakeMaker;
|
||||||
WriteMakefile(
|
WriteMakefile(
|
||||||
'NAME' => 'Parse::Pidl',
|
'NAME' => 'Parse::Pidl',
|
||||||
'VERSION_FROM' => 'Parse/Pidl.pm',
|
'VERSION_FROM' => 'lib/Parse/Pidl.pm',
|
||||||
'EXE_FILES' => [ 'pidl' ],
|
'EXE_FILES' => [ 'pidl' ],
|
||||||
'PMLIBDIRS' => [ 'Parse' ],
|
'PMLIBDIRS' => [ 'lib' ],
|
||||||
'C' => [],
|
|
||||||
'test' => { 'TESTS' => 'tests/*.pl' }
|
'test' => { 'TESTS' => 'tests/*.pl' }
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -12,5 +11,15 @@ sub MY::postamble {
|
|||||||
<<'EOT';
|
<<'EOT';
|
||||||
Parse/Pidl/IDL.pm :: idl.yp
|
Parse/Pidl/IDL.pm :: idl.yp
|
||||||
yapp -s -m 'Parse::Pidl::IDL' -o 'Parse/Pidl/IDL.pm' idl.yp
|
yapp -s -m 'Parse::Pidl::IDL' -o 'Parse/Pidl/IDL.pm' idl.yp
|
||||||
|
|
||||||
|
doc: pidl.1 pidl.1.html
|
||||||
|
|
||||||
|
XSLTPROC=xsltproc
|
||||||
|
|
||||||
|
%.1: %.1.xml
|
||||||
|
test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
||||||
|
|
||||||
|
%.html: %.xml
|
||||||
|
test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<
|
||||||
EOT
|
EOT
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
Introduction:
|
||||||
|
=============
|
||||||
This directory contains the source code of the pidl (Perl IDL)
|
This directory contains the source code of the pidl (Perl IDL)
|
||||||
compiler.
|
compiler.
|
||||||
|
|
||||||
@ -13,11 +15,26 @@ After a parse tree is present, pidl will call one of it's backends
|
|||||||
(which one depends on the options given on the command-line). Here is
|
(which one depends on the options given on the command-line). Here is
|
||||||
a list of current backends:
|
a list of current backends:
|
||||||
|
|
||||||
|
Standalone installation:
|
||||||
|
========================
|
||||||
|
Run Makefile.PL to generate the Makefile.
|
||||||
|
|
||||||
|
Then run "make install" (as root) to install.
|
||||||
|
|
||||||
|
Documentation:
|
||||||
|
==============
|
||||||
|
Run 'make doc' to generate the manpage and a HTML version of the manpage.
|
||||||
|
This requires the xsltproc utility to be installed.
|
||||||
|
|
||||||
|
Internals overview:
|
||||||
|
===================
|
||||||
|
|
||||||
-- Generic --
|
-- Generic --
|
||||||
Parse::Pidl::Dump - Converts the parse tree back to an IDL file
|
Parse::Pidl::Dump - Converts the parse tree back to an IDL file
|
||||||
Parse::Pidl::Samba::Header - Generates header file with data structures defined in IDL file
|
Parse::Pidl::Samba::Header - Generates header file with data structures defined in IDL file
|
||||||
Parse::Pidl::NDR - Generates intermediate datastructures for use by NDR parses/generators
|
Parse::Pidl::NDR - Generates intermediate datastructures for use by NDR parses/generators
|
||||||
Parse::Pidl::ODL - Generates IDL structures from ODL structures for use in the NDR parser generator
|
Parse::Pidl::ODL - Generates IDL structures from ODL structures for use in the NDR parser generator
|
||||||
|
Parse::Pidl::Test - Utility functions for use in pidl's testsuite
|
||||||
|
|
||||||
-- Samba NDR --
|
-- Samba NDR --
|
||||||
Parse::Pidl::Samba::NDR::Client - Generates client call functions in C using the NDR parser
|
Parse::Pidl::Samba::NDR::Client - Generates client call functions in C using the NDR parser
|
||||||
@ -25,6 +42,7 @@ Parse::Pidl::Samba::SWIG - Generates SWIG interface files (.i)
|
|||||||
Parse::Pidl::Samba::NDR::Header - Generates a header file with NDR-parser specific data
|
Parse::Pidl::Samba::NDR::Header - Generates a header file with NDR-parser specific data
|
||||||
Parse::Pidl::Samba::NDR::Parser - Generates pull/push functions for parsing NDR
|
Parse::Pidl::Samba::NDR::Parser - Generates pull/push functions for parsing NDR
|
||||||
Parse::Pidl::Samba::NDR::Server - Generates server side implementation in C
|
Parse::Pidl::Samba::NDR::Server - Generates server side implementation in C
|
||||||
|
Parse::Pidl::Samba::TDR - Parser generator for the "Trivial Data Representation"
|
||||||
Parse::Pidl::Samba::Template - Generates stubs in C for server implementation
|
Parse::Pidl::Samba::Template - Generates stubs in C for server implementation
|
||||||
Parse::Pidl::Samba::EJS - Generates bindings for Embedded JavaScript (EJS)
|
Parse::Pidl::Samba::EJS - Generates bindings for Embedded JavaScript (EJS)
|
||||||
Parse::Pidl::Samba::EJSHeader - Generates headers for the EJS bindings
|
Parse::Pidl::Samba::EJSHeader - Generates headers for the EJS bindings
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use lib "lib";
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
use Parse::Pidl;
|
use Parse::Pidl;
|
||||||
|
@ -6,7 +6,7 @@ PIDL_EXTRA_ARGS="$*"
|
|||||||
|
|
||||||
[ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
|
[ -d librpc/gen_ndr ] || mkdir -p librpc/gen_ndr || exit 1
|
||||||
|
|
||||||
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"
|
PIDL="$PERL ./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
|
if [ x$FULLBUILD = xFULL ]; then
|
||||||
echo Rebuilding all idl files in librpc/idl
|
echo Rebuilding all idl files in librpc/idl
|
||||||
|
Loading…
Reference in New Issue
Block a user