GNU 编译系统

 

参考文档

https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html#Autotools-Introduction

 

autotools 构建过程如下

 

 

 

 

 

 

 

 

 

 

 

Makefile.am 经过automake 生成Makefile.in 文件

 

configure 编译过程

 

 

 

 

 

 

 

 

 

用户如何使用autotools?

第一步:解压软件包 tar zxvf XXX

第二步:cd XXX && mkdir build && cd build

第二步:../configure    生成Makefile 与 config.h

第三步:make check  检查

第四步: sudo make install  安装软件

第五步: make installcheck 检查是否正常安装

 

一些make常用命令

make all 编译所有

make install 安装软件

make install-strip 添加debug信息

make uninstall 卸载软件

make clean 清除make信息

make distclean 清除./configure信息

make check 运行测试脚本

make installcheck 运行测试软件脚本 

make dist  创建PACKAGE-VERSION.tar.gz

 

软件标准目录结构

prefix      /usr/local

exec-prefix   prefix

bindir      exec-prefix/bin

libdir      exec-prefix/lib

Includedir    prefix/include

datarootdir    prefix/share

datadir      datarootdir

mandir      datarootdir/man

infodir      datarootdir/info

 

 

        

 

posted @   elewei  阅读(276)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示