1 Star 0 Fork 92

zhanghe/varch

forked from Lamdonn/varch 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
built.sh 585 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
exe_file="built/bin/app"
echo "cleaning..."
if [ -f $exe_file ]; then
rm $exe_file
fi
echo "compilling..."
if [ "$1" == "debug" ]; then
make CFLAG=-g
else
make
fi
if [ -f $exe_file ]; then
echo "#################################"
echo "# Compile success !!!..."
echo "#################################"
else
echo "#################################"
echo "*** Compile fail ***"
echo "#################################"
fi
# find . -name *.h -o -name *.c | xargs wc -l
# enter key to continue
read -p "Press enter to continue"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/my-zhanghe/varch.git
git@gitee.com:my-zhanghe/varch.git
my-zhanghe
varch
varch
master

搜索帮助