Files
kunlun/mfgtool/pic/build_pic.sh
2024-09-28 14:24:04 +08:00

15 lines
200 B
Bash
Executable File

#!/bin/bash
if [ "$1" == "?" ]
then
echo "./build_pic.sh build pic"
echo "./build_pic.sh clean clean build result"
exit
fi
if [ "$1" == "clean" ]
then
make clean
else
make
fi