9 lines
86 B
Bash
9 lines
86 B
Bash
#!/bin/sh
|
|
cd ffmpeg-7.0
|
|
if [ $OS_TYPE = "BSD" ]
|
|
then
|
|
gmake clean
|
|
else
|
|
make clean
|
|
fi
|