Configure, Makefile.am, Makefile.in, Makefile

阅读更多
automake使用过程如下:

1.建目录
        在工作目录下建一个hello目录,用它来存放hello程序及相关文件。
2.编写程序
        利用gedit编写C程序:实现万年历功能的Hello.h和Hello.c程序及主程序Main.c。
3.生成configure
        执行autoscan命令生成一个名为configure.scan的文件,我们拿它作为configure.in的蓝本。将configure.scan改名为configure.in,然后打开configure.in,将文件修改为一下内容:
#               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
AC_INIT(Main, 1.0, BUG-REPORT-ADDRESS)
AM_INIT_AUTOMAKE(Main, 1.0)
AC_CONFIG_SRCDIR([Hello.h])
AM_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_FUNC_MALLOC
AC_OUTPUT(Makefile)
        然后先执行aclocal命令,生成aclocal.m4文件,再执行autoconf命令,生成configure文件。
4.执行autoheader命令
        执行autoheader命令,生成config.h.in。这一步非常重要,网上很多的automake生成Makefile方法中都没有包含这一步,然而,缺少这一步将会出错。
5.编写Makefile.am
        新建Makefile.am文件,写入如下内容:
        AUTOMAKE_OPTIONS = foreign
        bin_PROGRAMS = Main
        Main_SOURCES = Main.c Hello.c       
6.运行automake
        使用命令"automake --add-missing" automake会根据Makefile.am产生一些文件,包括最重要的Makefile.in文件。
         7. 执行configure生成Makefile
         执行/.configure命令,即可生成Makefile。
         8.生成可执行文件
         在终端上输入:make,即可生成可执行程序Main。
         9.运行Main
         输入./Main,运行Main程序。

你可能感兴趣的:(Configure,Makefile.am,Makefile.in,Makefile,automake)