gendoxylist: sort headers

This makes the doxygen lists much more rationally ordered.
This commit is contained in:
Karl Palsson 2019-06-25 12:36:29 +00:00
parent dc3bb245f1
commit 8d80db0319
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ PATH_DELTA=$(realpath --relative-to=${ODIR} ${DDIR})
printf "# This file is autogenerated by scripts/gendoxylist\n" > ${ODIR}/${ONAME}
printf "# All headers for core/platform, not always caught by .d file tracking\n" >> ${ODIR}/${ONAME}
UNTRACKED_DIRS="../include/libopencm3/cm3 ../include/libopencm3/${IPATH}"
for FN in $(find ${UNTRACKED_DIRS} -name '*.h'); do
for FN in $(find ${UNTRACKED_DIRS} -name '*.h' | sort); do
printf "INPUT += ../%s\n" "$FN" >> ${ODIR}/${ONAME}
done