8260f4f98c
This will make it possible to generate the file in the same way from Meson as well. Signed-off-by: Luca Boccassi <bluca@debian.org> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
13 lines
334 B
Bash
Executable File
13 lines
334 B
Bash
Executable File
#! /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'
|