mde/format.sh
2025-11-30 08:00:52 +09:00

12 lines
280 B
Bash
Executable file

#!/bin/sh
format() {
echo "-- $1"
old="`pwd`"
cd $1
clang-format --verbose -i `find $2 -name "*.c" -or -name "*.h"`
cd "$old"
}
format mdebase "mdm milkwm mpanel"
format mdelibs "audio audio/thread core sound include"
format mdeutils "mbiff mauplay mcompass mclock mimview"