immortalwrt/package/jsda/njitclient/help
2019-07-02 18:06:49 +08:00

21 lines
533 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
echo "帮助您自动生成可发布的源码包..."
echo "1、调用automake和autoconf等标准工具"
autoreconf --install
if test $? != 0 ; then
echo "缺少标准开发工具automake autoconf请先安装开发工具"
exit 1
fi
echo "2、调用./configure脚本自动完成各项检查"
./configure
if test $? != 0 ; then
echo "缺少开发库请参考Install.html文档安装所有开发工具"
exit 2
fi
echo "3、调用make工具生成tar.gz源代码压缩包"
make dist --quiet
ls *.tar.gz || ls *.tar.bz2