mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-12 09:54:36 +01:00
9 lines
320 B
Bash
9 lines
320 B
Bash
|
|
||
|
echo " ../Include/Library/printf_lite-conf.h"
|
||
|
echo " ../Include/Library/printf_lite.h"
|
||
|
|
||
|
find . -not -path "./PlatformPOSIX/*" -and -not -path "./PlatformIA32/*" -and \( -name "*.h" -or -name "*.cpp" -or -name "*.c" \) -print0 | sort -fz | while read -d $'\0' file
|
||
|
do
|
||
|
echo -e " "$(echo "$file" | sed 's|./||')
|
||
|
done
|