aboutsummaryrefslogtreecommitdiffstats
path: root/doc/api/generate_examples.sh
blob: 6fcfe513b60099e2b82f7b0d30d1238a9492d182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh -e
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 Luca Boccassi <bluca@debian.org>

EXAMPLES_DIR=$1
API_EXAMPLES=$2

exec > "${API_EXAMPLES}"
printf '/**\n'
printf '@page examples DPDK Example Programs\n\n'
find "${EXAMPLES_DIR}" -type f -name '*.c' -printf '@example examples/%P\n' | LC_ALL=C sort
printf '*/\n'