Fix documentation dependency generation.
authorJunio C Hamano <junkio@cox.net>
Tue, 8 Nov 2005 02:21:51 +0000 (18:21 -0800)
committerJunio C Hamano <junkio@cox.net>
Tue, 8 Nov 2005 02:21:51 +0000 (18:21 -0800)
Documentation/Makefile spent a lot of time to generate include
dependencies, which was quite noticeable especially during "make clean".

Rewrite it to generate just a single dependency file.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/.gitignore
Documentation/Makefile
Documentation/build-docdep.perl [new file with mode: 0755]

index dad52b8..9fef490 100644 (file)
@@ -3,3 +3,4 @@
 *.1
 *.7
 howto-index.txt
+doc.dep
index bb9533f..f45a062 100644 (file)
@@ -53,21 +53,19 @@ install: man
 #
 # Determine "include::" file references in asciidoc files.
 #
-TEXTFILES = $(wildcard *.txt)
-DEPFILES = $(TEXTFILES:%.txt=%.dep)
-
-%.dep : %.txt
-       @rm -f $@
-       @$(foreach dep, $(shell grep include:: $< | sed -e 's/include::/ /' -e 's/\[\]//'), \
-               echo $(<:%.txt=%.html) $(<:%.txt=%.1) : $(dep) >> $@; )
+TEXTFILES = $(wildcard git-*.txt)
+doc.dep : $(TEXTFILES) build-docdep.perl
+       rm -f $@+ $@
+       perl ./build-docdep.perl >$@+
+       mv $@+ $@
 
--include $(DEPFILES)
+-include doc.dep
 
 git.7: ../README
 
 
 clean:
-       rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html *.dep
+       rm -f *.xml *.html *.1 *.7 howto-index.txt howto/*.html doc.dep
 
 %.html : %.txt
        asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
diff --git a/Documentation/build-docdep.perl b/Documentation/build-docdep.perl
new file mode 100755 (executable)
index 0000000..dedef76
--- /dev/null
@@ -0,0 +1,28 @@
+#!/usr/bin/perl
+
+my %include = ();
+
+for my $text (<git-*.txt>) {
+    open I, '<', $text || die "cannot read: $text";
+    (my $base = $text) =~ s/\.txt$//;
+    while (<I>) {
+       if (/^include::/) {
+           chomp;
+           s/^include::\s*//;
+           s/\[\]//;
+           $include{$base}{$_} = 1;
+       }
+    }
+    close I;
+}
+
+# Do we care about chained includes???
+
+while (my ($base, $included) = each %include) {
+    my ($suffix) = '1';
+    if ($base eq 'git') {
+       $suffix = '7'; # yuck...
+    }
+    print "$base.html $base.$suffix : ", join(" ", keys %$included), "\n";
+}
+