• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            posts - 8, comments - 12, trackbacks - 0, articles - 0
              C++博客 :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

            makefile自動生成(轉(zhuǎn))

            Posted on 2008-07-09 18:07 eyesmart 閱讀(1056) 評論(0)  編輯 收藏 引用 所屬分類: Basic Knowledge
            為了編譯一個簡單的源文件main.c,需要自動生成一個makefile,以下是步驟:

            第一步:
            ----------
            在/root/project/main目錄下創(chuàng)建一個文件main.c,其內(nèi)容如下:
            ------------------------------------------------
            #include <stdio.h>
            int main(int argc, char** argv)
            {
                printf("Hello, Auto Makefile!\n");
                return 0;
            }
            ------------------------------------------------

            此時狀態(tài)如下:
            [root@localhost main]# pwd
            /root/project/main
            [root@localhost main]# ls
            main.c
            [root@localhost main]#

            第二步:
            ----------
            運行 autoscan , 自動創(chuàng)建兩個文件: autoscan.log  configure.scan

            此時狀態(tài)如下:
            [root@localhost main]# autoscan
            [root@localhost main]# ls
            autoscan.log  configure.scan  main.c
            [root@localhost main]#

            第三步:
            ----------
            修改configure.scan的文件名為configure.in

            查看configure.in的內(nèi)容:
            ------------------------------------------------
            #                                               -*- Autoconf -*-
            # Process this file with autoconf to produce a configure script.

            AC_PREREQ(2.61)
            AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
            AC_CONFIG_SRCDIR([main.c])
            AC_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_OUTPUT
            ------------------------------------------------

            解讀以上的文件:

            ------------------------------------------------
            #                                               -*- Autoconf -*-
            # Process this file with autoconf to produce a configure script.

            # AC_PREREQ:
            # 確保使用的是足夠新的Autoconf版本。如果用于創(chuàng)建configure的Autoconf的版
            # 本比version 要早,就在標(biāo)準(zhǔn)錯誤輸出打印一條錯誤消息并不會創(chuàng)建configure。
            AC_PREREQ(2.61)

            #
            # 初始化,定義軟件的基本信息,包括設(shè)置包的全稱,版本號以及報告BUG時需要用的郵箱地址
            #
            AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)

            #
            # 用來偵測所指定的源碼文件是否存在,來確定源碼目錄的有效性
            #
            AC_CONFIG_SRCDIR([main.c])

            #
            # 用于生成config.h文件,以便autoheader使用
            #
            AC_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.

            #
            # 創(chuàng)建輸出文件。在`configure.in'的末尾調(diào)用本宏一次。
            #
            AC_OUTPUT
            ------------------------------------------------

            修改動作:
                1.修改AC_INIT里面的參數(shù): AC_INIT(main,1.0, pgpxc@163.com)
                2.添加宏AM_INIT_AUTOMAKE, 它是automake所必備的宏,也同前面一樣,PACKAGE是所要產(chǎn)生軟件套件的名稱,VERSION是版本編號。
                3.在AC_OUTPUT后添加輸出文件Makefile


            修改后的結(jié)果:
            ------------------------------------------------
            #                                               -*- Autoconf -*-
            # Process this file with autoconf to produce a configure script.

            AC_PREREQ(2.61)
            AC_INIT(main, 1.0, pgpxc@163.com)
            AC_CONFIG_SRCDIR([main.c])
            AC_CONFIG_HEADER([config.h])
            AM_INIT_AUTOMAKE(main,1.0)

            # 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_OUTPUT([Makefile])
            ------------------------------------------------

            第四步:
            運行 aclocal, 生成一個“aclocal.m4”文件和一個緩沖文件夾autom4te.cache,該文件主要處理本地的宏定義。

            此時的狀態(tài)是:
            [root@localhost main]# aclocal
            [root@localhost main]# ls
            aclocal.m4  autom4te.cache  autoscan.log  configure.in  configure.in~  main.c
            [root@localhost main]#


            第五步:
            運行 autoconf, 目的是生成 configure

            此時的狀態(tài)是:
            [root@localhost main]# autoconf
            [root@localhost main]# ls
            aclocal.m4      autoscan.log  configure.in   main.c
            autom4te.cache  configure     configure.in~
            [root@localhost main]#

            第六步:
            運行 autoheader,它負(fù)責(zé)生成config.h.in文件。該工具通常會從“acconfig.h”文件中復(fù)制用戶附加的符號定義,因此此處沒有附加符號定義,所以不需要創(chuàng)建“acconfig.h”文件。

            此時的狀態(tài)是:
            [root@localhost main]# autoheader
            [root@localhost main]# ls
            aclocal.m4      autoscan.log  configure     configure.in~
            autom4te.cache  config.h.in   configure.in  main.c
            [root@localhost main]#

            第七步:
            下面即將運行 automake, 但在此之前應(yīng)該做一下準(zhǔn)備工作!

            首先
            創(chuàng)建一個 Makefile.am.這一步是創(chuàng)建Makefile很重要的一步,automake要用的腳本配置文件是Makefile.am,用戶需要自己創(chuàng)建相應(yīng)的文件。之后,automake工具轉(zhuǎn)換成Makefile.in。

            這個Makefile.am的內(nèi)容如下:
            ------------------------------------------------
            AUTOMAKE_OPTIONS=foreign
            bin_PROGRAMS=main
            main_SOURCES=main.c
            ------------------------------------------------

            下面對該腳本文件的對應(yīng)項進(jìn)行解釋。
                其中的AUTOMAKE_OPTIONS為設(shè)置automake的選項。由于GNU(在第1章中已經(jīng)有所介紹)對自己發(fā)布的軟件有嚴(yán)格的規(guī)范,比如必須附帶許可證聲明文件COPYING等,否則automake執(zhí)行時會報錯。automake提供了三種軟件等級:foreign、gnu和gnits,讓用戶選擇采用,默認(rèn)等級為gnu。在本例使用foreign等級,它只檢測必須的文件。
                bin_PROGRAMS定義要產(chǎn)生的執(zhí)行文件名。如果要產(chǎn)生多個執(zhí)行文件,每個文件名用空格隔開。
                main_SOURCES定義“main”這個執(zhí)行程序所需要的原始文件。如果”main”這個程序是由多個原始文件所產(chǎn)生的,則必須把它所用到的所有原始文件都列出來,并用空格隔開。例如:若目標(biāo)體“main”需要“main.c”、“sunq.c”、“main.h”三個依賴文件,則定義main_SOURCES=main.c sunq.c main.h。要注意的是,如果要定義多個執(zhí)行文件,則對每個執(zhí)行程序都要定義相應(yīng)的file_SOURCES。

            其次
            使用automake對其生成“configure.in”文件,在這里使用選項“—adding-missing”可以讓automake自動添加有一些必需的腳本文件。
            運行后的狀態(tài)是:
            ------------------------------------------------
            [root@localhost main]# automake --add-missing
            configure.in:8: installing `./missing'
            configure.in:8: installing `./install-sh'
            Makefile.am: installing `./depcomp'
            [root@localhost main]# ls
            aclocal.m4      config.h.in   configure.in~  main.c        Makefile.in
            autom4te.cache  configure     depcomp        Makefile.am   missing
            autoscan.log    configure.in  install-sh     Makefile.am~
            [root@localhost main]#
            ------------------------------------------------

            第八步
            運行configure,在這一步中,通過運行自動配置設(shè)置文件configure,把Makefile.in變成了最終的Makefile。
            運行的結(jié)果如下:
            ------------------------------------------------
            [root@localhost main]# ./configure
            checking for a BSD-compatible install... /usr/bin/install -c
            checking whether build environment is sane... yes
            checking for a thread-safe mkdir -p... /bin/mkdir -p
            checking for gawk... gawk
            checking whether make sets $(MAKE)... yes
            checking for gcc... gcc
            checking for C compiler default output file name... a.out
            checking whether the C compiler works... yes
            checking whether we are cross compiling... no
            checking for suffix of executables...
            checking for suffix of object files... o
            checking whether we are using the GNU C compiler... yes
            checking whether gcc accepts -g... yes
            checking for gcc option to accept ISO C89... none needed
            checking for style of include used by make... GNU
            checking dependency style of gcc... gcc3
            configure: creating ./config.status
            config.status: creating Makefile
            config.status: creating config.h
            config.status: executing depfiles commands
            [root@localhost main]# ls
            aclocal.m4      config.h.in    configure.in   main.c        Makefile.in
            autom4te.cache  config.log     configure.in~  Makefile      missing
            autoscan.log    config.status  depcomp        Makefile.am   stamp-h1
            config.h        configure      install-sh     Makefile.am~
            [root@localhost main]#
            ------------------------------------------------

            第九步
            運行 make,對配置文件Makefile進(jìn)行測試一下

            此時的狀態(tài)如下:
            ------------------------------------------------
            [root@localhost main]# make
            cd . && /bin/sh /root/project/main/missing --run aclocal-1.10
            cd . && /bin/sh /root/project/main/missing --run automake-1.10 --foreign
            cd . && /bin/sh /root/project/main/missing --run autoconf
            /bin/sh ./config.status --recheck
            running CONFIG_SHELL=/bin/sh /bin/sh ./configure   --no-create --no-recursion
            checking for a BSD-compatible install... /usr/bin/install -c
            checking whether build environment is sane... yes
            checking for a thread-safe mkdir -p... /bin/mkdir -p
            checking for gawk... gawk
            checking whether make sets $(MAKE)... yes
            checking for gcc... gcc
            checking for C compiler default output file name... a.out
            checking whether the C compiler works... yes
            checking whether we are cross compiling... no
            checking for suffix of executables...
            checking for suffix of object files... o
            checking whether we are using the GNU C compiler... yes
            checking whether gcc accepts -g... yes
            checking for gcc option to accept ISO C89... none needed
            checking for style of include used by make... GNU
            checking dependency style of gcc... gcc3
            configure: creating ./config.status
            /bin/sh ./config.status
            config.status: creating Makefile
            config.status: creating config.h
            config.status: config.h is unchanged
            config.status: executing depfiles commands
            cd . && /bin/sh /root/project/main/missing --run autoheader
            rm -f stamp-h1
            touch config.h.in
            make  all-am
            make[1]: Entering directory `/root/project/main'
            gcc -DHAVE_CONFIG_H -I.     -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
            mv -f .deps/main.Tpo .deps/main.Po
            gcc  -g -O2   -o main main.o 
            cd . && /bin/sh ./config.status config.h
            config.status: creating config.h
            config.status: config.h is unchanged
            make[1]: Leaving directory `/root/project/main'
            [root@localhost main]# ls
            aclocal.m4      autoscan.log  config.h.in  config.status  configure.in   depcomp     main    main.o    Makefile.am   Makefile.in  stamp-h1
            autom4te.cache  config.h      config.log   configure      configure.in~  install-sh  main.c  Makefile  Makefile.am~  missing
            [root@localhost main]#
            ------------------------------------------------

            第十步
            運行生成的文件 main:
            ------------------------------------------------
            [root@localhost main]# ./main
            Hello, Auto Makefile!
            [root@localhost main]#
            亚洲精品乱码久久久久久中文字幕| 久久福利青草精品资源站| 久久久久亚洲AV无码去区首| 国产美女久久久| 久久久国产精华液| 亚洲精品乱码久久久久久蜜桃不卡 | 久久久久无码中| 中文字幕无码免费久久| 国产人久久人人人人爽| 欧美精品福利视频一区二区三区久久久精品| 亚洲欧美成人久久综合中文网 | 欧美激情精品久久久久久久九九九| 久久国产免费直播| 精品久久久无码中文字幕| 久久香综合精品久久伊人| 国产精品无码久久久久久| 亚洲综合久久夜AV | 93精91精品国产综合久久香蕉| 久久人人爽人人爽人人片AV高清| 99久久亚洲综合精品网站| 亚洲精品蜜桃久久久久久| 久久夜色精品国产噜噜亚洲a| 久久96国产精品久久久| 久久香蕉国产线看观看精品yw| 要久久爱在线免费观看| 亚洲欧美国产精品专区久久 | 99久久无码一区人妻a黑| 久久久久久久精品妇女99| 色婷婷噜噜久久国产精品12p| 青青草原1769久久免费播放| 久久久久久亚洲精品成人| 区亚洲欧美一级久久精品亚洲精品成人网久久久久| 国产精品久久成人影院| 午夜精品久久久久久久| 久久久国产打桩机| 亚洲精品国精品久久99热一| 伊人久久大香线蕉亚洲| 伊人久久精品无码二区麻豆| 日韩欧美亚洲综合久久| 国内精品久久久久久久久电影网 | 国产叼嘿久久精品久久|