本帖最后由 水精灵 于 2024-8-12 10:02 编辑

在Linux应用开发中,编写Makefile是一项必备技能,因为它定义了工程中所有文件的编译顺序、规则和依赖关系,决定了哪些文件需要编译以及它们的编译顺序。
虽然对初级开发者而言,编写复杂的Makefile并非日常任务,但遇见需要构建大型软件项目时,利用工具自动生成Makefile就显得尤为关键。接下来,我们将重点介绍一款自动化构建工具——Autotools,帮助开发者高效地管理项目构建流程。

1、安装需要工具
elf@ubuntu:~/work$ sudo apt-get install automake

2、测试程序编写
elf@ubuntu:~/work/autotools$ vi main.c
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <hello.h>
  4. int main(void)
  5. {
  6. print();
  7. return 0;
  8. }
复制代码
写好之后保存退出。

elf@ubuntu:~/work/autotools$ vi hello.c
  1. #include <stdio.h>
  2. #include <string.h>
  3. void print(void)
  4. {
  5. printf("Hello,ElfBoard!\n");
  6. }
复制代码
写好之后保存退出。

elf@ubuntu:~/work/autotools$ vi hello.h
  1. #ifndef __HELLO_H__
  2. #define __HELLO_H__
  3. void print(void);
  4. #endif
复制代码
写好之后保存退出。

3、使用autoscan工具生成configure.scan 文件
autoscan将生成一个名为configure.scan的文件,其中包含了自动扫描到的可能需要配置的信息。
elf@ubuntu:~/work/autotools$ autoscan
elf@ubuntu:~/work/autotools$ ls
autoscan.log configure.scan hello.c hello.h main.c

4、修改configure.ac文件
将configure.scan文件重命名为configure.ac,然后进一步编辑该文件。开发者通常会添加更多的配置检查和必要的宏定义,以确保生成的configure 脚本能够正确地检测和配置系统环境。
elf@ubuntu:~/work/autotools$ mv configure.scan configure.ac
修改 configure.ac

AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
修改为
AC_INIT(main,0.0.1, [bug@sounos.org])

其中:
FULL-PACKAGE-NAME为程序名称,
VERSION为当前版本,
BUG-REPORT-ADDRESS为bug汇报地址。

然后添加两句话
  1. AM_INIT_AUTOMAKE
  2. AC_CONFIG_FILES([Makefile])
复制代码

●AM_INIT_AUTOMAKE宏用于初始化automake,告诉autotools使用automake工具来管理生成的Makefile。
●AC_CONFIG_FILES宏告诉autotools生成哪些文件。在这种情况下,它指定生成一个名为Makefile 的文件。

修改完成的configure.ac如下:
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  4. #AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
  5. AC_INIT(main,0.0.1, [bug@sounos.org])
  6. AM_INIT_AUTOMAKE
  7. AC_CONFIG_SRCDIR([hello.h])
  8. AC_CONFIG_HEADERS([config.h])
  9. # Checks for programs.
  10. AC_PROG_CC
  11. # Checks for libraries.
  12. # Checks for header files.
  13. AC_CHECK_HEADERS([string.h])
  14. # Checks for typedefs, structures, and compiler characteristics.
  15. # Checks for library functions.
  16. AC_CONFIG_FILES([Makefile])
  17. AC_OUTPUT
复制代码

5、执行aclocal
执行aclocal命令会生成aclocal.m4文件,这个文件包含了用于自动配置和构建软件的宏定义和规则。
elf@ubuntu:~/work/autotools$ aclocal
elf@ubuntu:~/work/autotools$ ls
aclocal.m4 autom4te.cache autoscan.log configure.ac hello.c hello.h main.c

6、autoconf
autoconf命令根据configure.ac文件生成configure脚本。
elf@ubuntu:~/work/autotools$ autoconf
elf@ubuntu:~/work/autotools$ ls
aclocal.m4 autom4te.cache autoscan.log configure configure.ac hello.c hello.h main.c

7、autoheader
autoheader命令用于生成config.h.in文件。这个文件是由configure.ac中的一些宏命令生成的模板文件,它包含了预处理器定义和配置选项,会在configure脚本执行时生成最终的config.h文件。
elf@ubuntu:~/work/autotools$ autoheader
elf@ubuntu:~/work/autotools$ ls
aclocal.m4 autom4te.cache autoscan.log config.h.in configure configure.ac hello.c
hello.h main.c

8、制作Makefile.am
Makefile.am是用来描述源代码和生成目标之间依赖关系的Automake规则文件。
elf@ubuntu:~/work/autotools$ vi Makefile.am
  1. AUTOMAKE_OPTIONS= foreign
  2. bin_PROGRAMS= main
  3. main_SOURCES= main.c hello.c
复制代码

9、automake --add-missing
automake --add-missing命令会根据Makefile.am文件生成Makefile.in文件。
elf@ubuntu:~/work/autotools$ automake --add-missing
configure.ac:12: installing './compile'
configure.ac:7: installing './install-sh'
configure.ac:7: installing './missing'
Makefile.am: installing './depcomp'
elf@ubuntu:~/work/autotools$ ls
aclocal.m4 autom4te.cache autoscan.log compile config.h.in configure configure.ac
depcomp hello.c hello.h install-sh main.c Makefile.am Makefile.in missing

10、./configure --host=arm
./configure --host=arm命令会生成Makefile文件。
elf@ubuntu:~/work/autotools$ . /opt/fsl-imx-x11/4.1.15-2.0.0/environment-setupcortexa7hf-neon-poky-linux-gnueabi
elf@ubuntu:~/work/autotools$ ./configure --host=arm

11、make生成可执行文件
elf@ubuntu:~/work/autotools$ make
elf@ubuntu:~/work/autotools$ ls
aclocal.m4 autoscan.log config.h config.log configure depcomp hello.h install-sh
main.c Makefile Makefile.in stamp-h1
autom4te.cache compile config.h.in config.status configure.ac hello.c hello.o main
main.o Makefile.am missing

12、将可执行文件拷贝到板子中运行
elf@ubuntu:~/work/autotools$ scp main root@192.168.5.98:/home/root/
root@ELF1:~# ./main
Hello,ElfBoard!
执行应用终端打印“Hello,ElfBoard”应用可以正常运行,这证明使用autotools工具生成Makefile是没有问题的。

至此,就完成了Makefile自动生成利器—autotools的运用的介绍。衷心期望这些知识能为正在屏幕前阅读的你带来实质性的帮助,激发你在软件工程领域不断探索与创新。
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Powered by Discuz! X3.5  © 2001-2013 Comsenz Inc.