numam-dpdk/doc/meson.build
Bruce Richardson 8dcb898c65 build: change indentation in infrastructure files
Switch from using tabs to 4 spaces for meson.build indentation, for the
basic infrastructure and tooling files, as well as doc and kernel
directories.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2021-04-21 14:04:09 +02:00

16 lines
364 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
doc_targets = []
doc_target_names = []
subdir('api')
subdir('guides')
if doc_targets.length() == 0
message = 'No docs targets found'
else
message = 'Building docs:'
endif
run_target('doc', command: ['echo', message, doc_target_names],
depends: doc_targets)