码迷,mamicode.com
首页 > 系统相关 > 详细

Linux中./configure,make,make install的作用

时间:2016-08-10 23:05:45      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:linux   make   ./configure   make install的作用   

对LINUX中安装软件使用./configure,make,make install的解释:

       例如:

    Shell>tar zxvf libevent-1.4.14b-stable.tar.gz 

    Shell>cd libevent-1.4.14b-stable 

    Shell>./configure 

    Shell>make && make install 


(1)./configure是检测安装平台的目标特征的。比如它会检测你是不是有CC或GCC,它是个shell脚本,用来生成 Makefile,为下一步的编译做准备,你可以通过在 configure 后加上参数来对安装进行控制,比如代码:./configure –prefix=/usr/local 意思是将该软件安装在 /usr/local 下面.


 (2) make是用来编译的,它从Makefile中读取指令,然后编译,大多数的源代码包都经过这一步进行编译.


     (3)make install是用来安装的,它也从Makefile中读取指令,安装到指定的位置,这条命令来进行安装(当然有些软件需要先运行 make check 或 make test 来进行一些测试),这一步一般需要你有 root 权限(因为要向系统写入文件)。


        在Linux下安装一个应用程序时,一般先运行脚本configure,然后用make来编译源程序,在运行make install,最后运行make clean删除一些临时文件。使用上述三个工具,就可以生成configure脚本。运行configure脚本,就可以生成Makefile文件,然后就可以运行make、make install和make clean。

 


本文出自 “Apple” 博客,请务必保留此出处http://59465168.blog.51cto.com/5268021/1836610

Linux中./configure,make,make install的作用

标签:linux   make   ./configure   make install的作用   

原文地址:http://59465168.blog.51cto.com/5268021/1836610

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!