f-stack/dpdk/doc/api/generate_examples.sh

21 lines
624 B
Bash
Raw Normal View History

2019-06-25 11:12:58 +00:00
#! /bin/sh -e
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 Luca Boccassi <bluca@debian.org>
EXAMPLES_DIR=$1
API_EXAMPLES=$2
2022-09-02 04:40:05 +00:00
FIND=find
2021-02-05 08:48:47 +00:00
# generate a .d file including both C files and also build files, so we can
# detect both file changes and file additions/deletions
2022-09-02 04:40:05 +00:00
echo "$API_EXAMPLES: $($FIND ${EXAMPLES_DIR} -type f \( -name '*.c' -o -name 'meson.build' \) | tr '\n' ' ' )" > ${API_EXAMPLES}.d
2021-02-05 08:48:47 +00:00
2019-06-25 11:12:58 +00:00
exec > "${API_EXAMPLES}"
printf '/**\n'
printf '@page examples DPDK Example Programs\n\n'
2022-09-02 04:40:05 +00:00
$FIND "${EXAMPLES_DIR}" -type f -name '*.c' |
sed "s|${EXAMPLES_DIR}|@example examples|" |
LC_ALL=C sort
2019-06-25 11:12:58 +00:00
printf '*/\n'