meson: add man/doc-sync target

Seems to work OK. It would be nicer to call it 'doc-sync' not 'man/doc-sync',
but OK.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-04-15 00:07:57 -04:00
parent 83b6af36d1
commit f75d75eb66
2 changed files with 23 additions and 8 deletions

View File

@ -133,12 +133,24 @@ foreach tuple : [['systemd.directives', '7', systemd_directives_xml],
html_pages += [p2]
endforeach
custom_target('man',
depends : man_pages,
output : ['man'],
command : ['echo'])
man = custom_target('man',
depends : man_pages,
output : 'man',
command : ['echo'])
custom_target('html',
depends : html_pages,
output : ['html'],
command : ['echo'])
html = custom_target('html',
depends : html_pages,
output : 'html',
command : ['echo'])
custom_target('doc-sync',
depends : [man, html],
output : ['doc-sync'],
command : ['rsync', '-rlv',
'--delete-excluded',
'--include=man',
'--include=*.html',
'--exclude=*',
'--omit-dir-times',
meson.current_build_dir(),
get_option('www-target')])

View File

@ -154,6 +154,9 @@ option('ntp-servers', type : 'string',
option('support-url', type : 'string',
description : 'the support URL to show in catalog entries included in systemd',
value : 'https://lists.freedesktop.org/mailman/listinfo/systemd-devel')
option('www-target', type : 'string',
description : 'the address and dir to upload docs too',
value : 'www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd')
option('seccomp', type : 'combo', choices : ['auto', 'true', 'false'],
description : 'SECCOMP support')