From ec2c0a84c9ca9086c5230966d72d7f5569cb67d6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 29 Nov 2011 15:48:08 +0000 Subject: docs/html/: Arrange for automatic build of hypercall docs - Use index.html rather than a stamp file. - Automatically generate dependencies. - Wire into the docs build system Signed-off-by: Ian Jackson Acked-by: Ian Campbell Committed-by: Ian Jackson --- docs/xen-headers | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'docs/xen-headers') diff --git a/docs/xen-headers b/docs/xen-headers index 5a62622a23..08fd7f3462 100755 --- a/docs/xen-headers +++ b/docs/xen-headers @@ -325,6 +325,12 @@ END } foreach $pass (qw(1 2)) { + my $depspath = "$outdir/.deps"; + my $depsout; + if ($pass==2) { + $depsout = new IO::File "$depspath.new", 'w' or die $!; + } + find({ wanted => sub { return unless m/\.h$/; @@ -341,11 +347,19 @@ foreach $pass (qw(1 2)) { $leaf_opath = $leaf; $leaf_opath =~ s#/#,#g; $leaf_opath .= ".html"; + print $depsout "$outdir/index.html: $File::Find::name\n" + or die $! + if $pass==2; process_file($File::Find::name, $outdir.'/'.$leaf_opath); }, no_chdir => 1, }, map { "$basedir/$_" } @indirs); + + if ($pass==2) { + close $depsout or die $!; + rename "$depspath.new", "$depspath" or die $!; + } } output_index(); -- cgit v1.2.3