summaryrefslogtreecommitdiff
path: root/xsd/doc/buildfile
blob: ccfc0603d9e9e6f56335ad44ea009122563e11e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# file      : doc/buildfile
# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

define css: doc
css{*}: extension = css

define xsd: doc
xsd{*}: extension = xsd

define xhtml: doc
xhtml{*}: extension = xhtml

define ps: doc
ps{*}: extension = ps

define pdf: doc
pdf{*}: extension = pdf

define html2ps: file
html2ps{*}: extension = html2ps

define png: doc
png{*}: extension = png

define svg: file
svg{*}: extension = svg

import? [metadata] cli = cli%exe{cli}

# Import the html2ps and ps2pdf14 programs only if present on the system. This
# way a distribution that includes pre-generated files can be built without
# installing these programs.
#
import? html2ps  = html2ps%exe{html2ps}
import? ps2pdf14 = ps2pdf14%exe{ps2pdf14}

./: xsd{custom-literals}

# Note that we include the cli, html2ps, and ps2pdf14 generated files into the
# distribution and don't remove them when cleaning in src (so that clean
# results in a state identical to distributed).

# Generate the man pages if the cli program is available and handle (install,
# distribute, etc) the pre-generated files otherwise, if present.
#
if ($cli != [null])
{
  ./: {man1 xhtml}{xsd}

  man_topics = $(src_root)/xsd/cxx/cli{options tree/options parser/options}

  man_options = -v project="XSD"                 \
                -v version="$version.project_id" \
                -v copyright="$copyright"        \
                -I $src_root                     \
                --stdout                         \
                --suppress-undocumented          \
                --exclude-base

  man1{xsd}: $man_topics            \
             man1{xsd-prologue      \
                  xsd-tree-header   \
                  xsd-parser-header \
                  xsd-epilogue}     \
             $cli
  {
    dist  = true
    clean = ($src_root != $out_root)
  }
  {{
    diag cli $> : ($<[0]) # @@ TMP: revise

    # Note that the date change doesn't change the script semantics, thus the
    # variable is defined locally.
    #
    date +"%B %Y" | set date

    $cli --generate-man -v date="$date" $man_options \
         --class CXX::options                        \
         --class options                             \
         --man-prologue-file $path($<[3])            \
         $path($<[0]) >$path($>)

    $cli --generate-man -v date="$date" $man_options \
         --man-prologue-file $path($<[4])            \
         $path($<[1]) >>$path($>)

    $cli --generate-man -v date="$date" $man_options \
         --man-prologue-file $path($<[5])            \
         --man-epilogue-file $path($<[6])            \
         $path($<[2]) >>$path($>)
  }}

  xhtml{xsd}: $man_topics             \
              xhtml{xsd-prologue      \
                    xsd-tree-header   \
                    xsd-parser-header \
                    xsd-epilogue}     \
              css{*}                  \
              $cli
  {
    dist  = true
    clean = ($src_root != $out_root)
  }
  {{
    diag cli $> : ($<[0]) # @@ TMP: revise

    date +"%B %Y" | set date

    $cli --generate-html -v date="$date" $man_options \
         --class CXX::options                         \
         --class options                              \
         --html-prologue-file $path($<[3])            \
         $path($<[0]) >$path($>)

    $cli --generate-html -v date="$date" $man_options \
         --html-prologue-file $path($<[4])            \
         $path($<[1]) >>$path($>)

    $cli --generate-html -v date="$date" $man_options \
         --html-prologue-file $path($<[5])            \
         --html-epilogue-file $path($<[6])            \
         $path($<[2]) >>$path($>)
  }}
}
else
  # Distribute both the pre-generated file (if present) and the sources.
  #
  ./: {man1 xhtml}{+xsd xsd-*} css{*}

# Generate the user guide/manual ps/pdf files if the html2ps and ps2pdf14
# programs are imported and handle (install, distribute, etc) the
# pre-generated files otherwise, if present.
#
for d: cxx/parser/guide/ cxx/tree/guide/ cxx/tree/manual/
{
  p = "([dir_path] $path.leaf($path.directory($d)))" # parser, tree
  l = "([dir_path] $path.leaf($d))"                  # guide, manual
  f = "cxx-$p-$l"                                    # cxx-parser-guide, etc

  ./: $d/xhtml{index}: $d/{png svg}{*}

  $d/xhtml{index}: $d/in{index}
  {
    in.symbol = '@'
  }

  if ($html2ps != [null])
  {
    ./: $d/ps{$f}: $d/xhtml{index} $d/html2ps{$l} $html2ps
    {
      dist  = true
      clean = ($src_root != $out_root)
    }
    {{
      diag html2ps $> : ($<[0]) # @@ TMP: revise

      $html2ps -f $path($<[1]) -o $path($>) $path($<[0])
    }}

    if ($ps2pdf14 != [null])
    {
      ./: $d/pdf{$f}: $d/ps{$f} $ps2pdf14
      {
        dist  = true
        clean = ($src_root != $out_root)
      }
      {{
        diag ps2pdf14 $> : ($<[0]) # @@ TMP: revise

        $ps2pdf14 -dOptimize=true -dEmbedAllFonts=true $path($<[0]) $path($>)
      }}
    }
    else
      ./: $d/pdf{+$f}
  }
  else
    ./: $d/{ps pdf}{+$f} $d/html2ps{$l}

  $d/html2ps{$l}: $d/in{$l}
  {
    in.symbol = '@'
  }
}

{man1 xhtml}{xsd-*}: install = false        # xsd-prologue, etc
doc{*}:              install.subdirs = true