autotools使用——C源文件在相同目录下
Autotools运行流程
流程总结:
1. 执行autoscan命令。这个命令主要用于扫描工作目录,并且生成configure.scan文件。
2. 修改configure.scan为configure.ac文件,并且修改配置内容。
3. 执行aclocal命令。扫描 configure.ac 文件生成 aclocal.m4文件。
4. 执行autoconf命令。这个命令将 configure.ac 文件中的宏展开,生成 configure 脚本。
5. 执行autoheader命令。该命令生成 config.h.in 文件。
6. 新增Makefile.am文件,修改配置内容
7. 执行automake --add-missing命令。该命令生成 Makefile.in 文件。
8. 执行 ./congigure命令。将Makefile.in命令生成Makefile文件。
9. 执行make命令。生成可执行文件。
# ls
get.c get.h main.c sum.c sum.h val.c val.h
# cat main.c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "sum.h"
#include "get.h"
//入口主函数
int main() {
int x = 10;
int y = 20;
int z = sum(&x, &y);
puts("This is Main");
printf("Z:%d\n", z);
x = 20;
z = get(&x, &y);
printf("Z:%d\n", z);
return 1;
}
# cat get.c
#include "get.h"
int get(int *x, int *y) {
puts("This is get");
return (*x) * (*y);
}
# cat sum.c
#include "sum.h"
#include "val.h"
int sum(int *x, int *y) {
val(x);
puts("This is SUM Method!=========HDH");
return *x + *y;
}
# cat val.c
#include "val.h"
int val(int *x) {
puts("This is Value==");
printf("X:%d \n", *x);
return 0;
}
# cat sum.h
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int sum(int *x, int *y);
# cat get.h
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int get(int *x, int *y);
# cat val.h
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int val(int *x);
1> autoscan: 扫描工作目录,生成configure.scan(configure.ac模板) 。
# autoscan
# ls
autoscan.log configure.scan get.c get.h main.c sum.c sum.h val.c val.h
# mv configure.scan configure.ac
# ls
autoscan.log configure.ac get.c get.h main.c sum.c sum.h val.c val.h
修改configure.ac 如下,
# cat -n configure.ac
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT(main, 1.0, aaa@qq.com)
AM_INIT_AUTOMAKE(main, 1.0)
AC_CONFIG_SRCDIR([main.c])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
configure.ac标签说明:
标签 |
说明 |
AC_PREREQ |
声明autoconf要求的版本号 |
AC_INIT |
定义软件名称、版本号、联系方式 |
AM_INIT_AUTOMAKE |
必须要的,参数为软件名称和版本号或不需要参数 |
AC_CONFIG_SCRDIR |
宏用来侦测所指定的源码文件是否存在, 来确定源码目录的有效性.。此处为当前目录下main.c。 |
AC_CONFIG_HEADER |
宏用于生成config.h文件,以便 autoheader 命令使用。 |
AC_PROG_CC |
指定编译器,默认GCC |
AC_CONFIG_FILES |
生成相应的Makefile文件,不同文件夹下的Makefile通过空格分隔。例如:AC_CONFIG_FILES([Makefile, src/Makefile]) |
AC_OUTPUT |
用来设定 configure 所要产生的文件,如果是makefile,configure 会把它检查出来的结果带入makefile.in文件产生合适的makefile。 |
2> aclocal:扫描configure.ac文件生成aclocal.m4,该文件主要处理本地宏的定义,根据已安装的宏,用户定义宏和acinclude.m4中的宏将configure.ac需要的宏集中定义到aclocal.m4中。
# aclocal
# ls
aclocal.m4 autom4te.cache autoscan.log configure.ac get.c get.h main.c sum.c sum.h val.c val.h
3> autoconf:将configure.ac中的宏展开,根据需要结合aclocal.m4中的宏,生成configurs脚本。
# autoconf
# ls
aclocal.m4 autom4te.cache autoscan.log configure configure.ac get.c get.h main.c sum.c sum.h val.c val.h
4> autoheader:生成config.h.in。该命令通常从“acconfig.h”文件中复制用户附加的符号定义,本例无附件的符号定义,故不需创建 acconfig.h。
# autoheader
# ls
aclocal.m4 autoscan.log configure get.c main.c sum.h val.h
autom4te.cache config.h.in configure.ac get.h sum.c val.c
5> 创建Makefile.am。 automake根据configure.in中的参量把Makefile.am转换成Makefile.in,最终通过Makefile.in 生成Makefile 。
# cat Makefile.am
AUTOMARK_OPTIONS = foreign bin_PROGRAMS = main main_SOURCES = main.c val.h val.c sum.h sum.c get.h get.c
# ls
aclocal.m4 autoscan.log configure get.c main.c sum.c val.c
autom4te.cache config.h.in configure.ac get.h Makefile.am sum.h val.h
6> automake --add-missing 生成Makefile.in 。选项 --add-missing 让automake 自动添加一些必须的脚本文件。
# automake --add-missing
Makefile.am: installing './INSTALL'
Makefile.am: error: required file './NEWS' not found
Makefile.am: error: required file './README' not found
Makefile.am: error: required file './AUTHORS' not found
Makefile.am: error: required file './ChangeLog' not found
Makefile.am: installing './COPYING' using GNU General Public License v3 file
Makefile.am: Consider adding the COPYING file to the version control system
Makefile.am: for your code, to avoid questions about which license your project uses
# touch NEWS
# touch README
# touch AUTHORS
# touch ChangeLog
# automake --add-missing
# ls
aclocal.m4 autom4te.cache ChangeLog configure COPYING get.h main.c Makefile.in README sum.h val.h
AUTHORS autoscan.log config.h.in configure.ac get.c INSTALL Makefile.am NEWS sum.c val.c
7> ./configure ,将 Makefile.in 变成最终的 Makefile 。
# ./configure
# ls
aclocal.m4 autoscan.log config.h.in configure get.c main.c Makefile.in stamp-h1 val.c
AUTHORS ChangeLog config.log configure.ac get.h Makefile NEWS sum.c val.h
autom4te.cache config.h config.status COPYING INSTALL Makefile.am README sum.h
8> make
# make
# ls
aclocal.m4 ChangeLog config.status get.c main Makefile.am stamp-h1 val.c
AUTHORS config.h configure get.h main.c Makefile.in sum.c val.h
autom4te.cache config.h.in configure.ac get.o main.o NEWS sum.h val.o
autoscan.log config.log COPYING INSTALL Makefile README sum.o
9> 执行生成的可执行文件
# ./main
This is Value==
X:10
This is SUM Method!=========HDH
This is Main
Z:30
This is get
Z:400
下一篇: 生成验证码