From 1e0fccd1af54fdd4dbd79f6e7c5715478f83dea3 Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Fri, 14 Dec 2018 01:53:32 +0100 Subject: Doc: Move root of code documentation to doc dir It reduces clutter in root and also avoid collision with doc dir on case-insensitive filesystems when name back to Doc. --- doc/prog-root | 9 +++++++++ doc/progdoc | 1 - progdoc | 9 --------- tools/progdoc | 11 ++++++----- 4 files changed, 15 insertions(+), 15 deletions(-) create mode 100644 doc/prog-root delete mode 100644 doc/progdoc delete mode 100644 progdoc diff --git a/doc/prog-root b/doc/prog-root new file mode 100644 index 00000000..c31e5ae1 --- /dev/null +++ b/doc/prog-root @@ -0,0 +1,9 @@ +D doc/prog-head.sgml +D doc/prog-intro.sgml +C nest +C conf +C filter +C proto +C sysdep +C lib +D doc/prog-foot.sgml diff --git a/doc/progdoc b/doc/progdoc deleted file mode 100644 index 0c3e04e5..00000000 --- a/doc/progdoc +++ /dev/null @@ -1 +0,0 @@ -D prog-intro.sgml diff --git a/progdoc b/progdoc deleted file mode 100644 index 77061390..00000000 --- a/progdoc +++ /dev/null @@ -1,9 +0,0 @@ -D doc/prog-head.sgml -C doc -C nest -C conf -C filter -C proto -C sysdep -C lib -D doc/prog-foot.sgml diff --git a/tools/progdoc b/tools/progdoc index 9b27d14e..32e9771e 100755 --- a/tools/progdoc +++ b/tools/progdoc @@ -4,7 +4,7 @@ $srcdir = $ARGV[0]; $out = $ARGV[1]; open(OUT, ">", $out) || die "Cannot create output file"; -process($srcdir); +process($srcdir, "doc/prog-root"); close OUT; gen_deps(); exit 0; @@ -21,9 +21,10 @@ sub include { sub process { my $dir = shift @_; - print "$dir/progdoc\n"; - open(IN, "$dir/progdoc") || die "Unable to read $dir/progdoc"; - push(@deps, "$dir/progdoc"); + my $doc = "$dir/" . shift @_; + print "$doc\n"; + open(IN, $doc) || die "Unable to read $doc"; + push(@deps, $doc); my @docfile = ; close IN; foreach $_ (@docfile) { @@ -32,7 +33,7 @@ sub process { /^([A-Z]+)\s*(.*)/ || die "Parse error: $_"; $cmd = $1; $arg = $2; - if ($cmd eq "C") { process("$dir/$arg"); } + if ($cmd eq "C") { process("$dir/$arg", "progdoc"); } elsif ($cmd eq "H") { push @stack, "H"; print OUT "$arg\n"; -- cgit v1.2.3