blob: afe1585144893c4bb2f90ea98eec6f84bb36e215 (
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
|
custom_man_xsl = custom_target(
'custom-man.xsl',
input: 'custom-man.xsl.in',
output: ['custom-man.xsl'],
command: [
redir_exe,
'@INPUT@',
'@OUTPUT@',
'sed',
's+MAN_STYLESHEET+' + man_stylesheet + '+g'
]
)
install_data(
'index.html',
install_dir: htmldir,
install_tag: 'doc',
)
install_html = files('install-html.sh')
subdir('man')
subdir('specs')
subdir('sag')
subdir('adg')
subdir('mwg')
|