14 lines
193 B
Bash
Executable file
14 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -e config.h ]; then
|
|
cp config.def.h config.h
|
|
fi
|
|
|
|
if which clang-format > /dev/null; then
|
|
clang-format -i ./*.c ./*.h ./*/*.c ./*/*.h
|
|
fi
|
|
|
|
mk clean
|
|
mk o.rio
|
|
|
|
mv o.rio ryudo
|