先建立Makefile.am和configure.in文件,从其他项目拷贝后进行修改
动态库的Makefile文件生成:
执行命令:
aclocal
libtoolize -f -c
autoconf
automake --add-missing
./configure 或者 ./configure --host=mipsel-linux
可执行程序的Makefile文件生成:
执行命令:
aclocal
autoconf
automake --add-missing
./configure 或者 ./configure --host=mipsel-linux
设置当前目录为库的搜索目录
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
动态库的Makefile文件生成:
执行命令:
aclocal
libtoolize -f -c
autoconf
automake --add-missing
./configure 或者 ./configure --host=mipsel-linux
可执行程序的Makefile文件生成:
执行命令:
aclocal
autoconf
automake --add-missing
./configure 或者 ./configure --host=mipsel-linux
设置当前目录为库的搜索目录
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH