10 lines
103 B
Bash
Executable file
10 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -e config.h ]; then
|
|
cp config.def.h config.h
|
|
fi
|
|
|
|
mk clean
|
|
mk o.rio
|
|
|
|
mv o.rio ryudo
|