mirror of https://github.com/F-Stack/f-stack.git
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'
|