青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

sunrise

每天不斷學(xué)習(xí),才能不斷提升自己。

  C++博客 :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
  64 隨筆 :: 0 文章 :: 92 評(píng)論 :: 0 Trackbacks

1.autoscan (autoconf): 掃描源代碼以搜尋普通的可移植性問(wèn)題,比如檢查編譯器,庫(kù),頭文件等,生成文件configure.scan,它是configure.ac的一個(gè)雛形。

    your source files --> [autoscan*] --> [configure.scan] --> configure.ac

2.aclocal (automake):根據(jù)已經(jīng)安裝的宏,用戶(hù)定義宏和acinclude.m4文件中的宏將configure.ac文件所需要的宏集中定義到文件 aclocal.m4中。aclocal是一個(gè)perl 腳本程序,它的定義是:“aclocal - create aclocal.m4 by scanning configure.ac”
user input files   optional input     process          output files
================ ============== ======= ============

acinclude.m4 - - - - -.
V
.-------,
configure.ac ------------------------>|aclocal|
{user macro files} ->| |------> aclocal.m4
`-------'
3.autoheader(autoconf): 根據(jù)configure.ac中的某些宏,比如cpp宏定義,運(yùn)行m4,聲稱(chēng)config.h.in

user input files optional input process output files
================ ============== ======= ============

aclocal.m4 - - - - - - - .
|
V
.----------,
configure.ac ----------------------->|autoheader|----> autoconfig.h.in
`----------'

4.automake: automake將Makefile.am中定義的結(jié)構(gòu)建立Makefile.in,然后configure腳本將生成的Makefile.in文件轉(zhuǎn)換 為Makefile。如果在configure.ac中定義了一些特殊的宏,比如AC_PROG_LIBTOOL,它會(huì)調(diào)用libtoolize,否則它 會(huì)自己產(chǎn)生config.guess和config.sub

user input files   optional input   processes          output files
================ ============== ========= ============

.--------,
| | - - -> COPYING
| | - - -> INSTALL
| |------> install-sh
| |------> missing
|automake|------> mkinstalldirs
configure.ac ----------------------->| |
Makefile.am ----------------------->| |------> Makefile.in
| |------> stamp-h.in
.---+ | - - -> config.guess
| | | - - -> config.sub
| `------+-'
| | - - - -> config.guess
|libtoolize| - - - -> config.sub
| |--------> ltmain.sh
| |--------> ltconfig
`----------'

5.autoconf:將configure.ac中的宏展開(kāi),生成configure腳本。這個(gè)過(guò)程可能要用到aclocal.m4中定義的宏。

user input files   optional input   processes          output files
================ ============== ========= ============

aclocal.m4 ,autoconfig.h.in - - - - - - -.
V
.--------,
configure.ac ----------------------->|autoconf|------> configure
 
6. ./configure的過(guò)程

.-------------> [config.cache]
configure* --------------------------+-------------> config.log
|
[config.h.in] -. v .--> [autoconfig.h]
+-------> config.status* -+
Makefile.in ---' `--> Makefile
 
7. make過(guò)程
 
[autoconfig.h] -.
+--> make* ---> 程序
Makefile ---'
 
.---------,
config.site - - ->| |
config.cache - - ->|configure| - - -> config.cache
| +-,
`-+-------' |
| |----> config.status
config.h.in ------->|config- |----> config.h
Makefile.in ------->| .status|----> Makefile
| |----> stamp-h
| +--,
.-+ | |
| `------+--' |
ltmain.sh ------->|ltconfig|-------> libtool
| | |
`-+------' |
|config.guess|
| config.sub |
`------------'

.--------,
Makefile ------>| |
config.h ------>| make |
{project sources} ---------------->| |--------> {project targets}
.-+ +--,
| `--------' |
| libtool |
| missing |
| install-sh |
|mkinstalldirs|
`-------------'
實(shí)例
在/hello/目錄下創(chuàng)建一個(gè)hello.c文件,并編譯運(yùn)行它:

#cd /hello/

(1) 編寫(xiě)源文件hello.c:

#include<stdio.h> 
int main(int argc, char** argv)
{
printf("Hello, GNU!n");
return 0;
}

[litao@vm0000131 hello]$ ll
total 4
-rw-rw-r-- 1 litao litao 68 Aug 12 12:02 hello.c

一、autoscan

[litao@vm0000131 hello]$ autoscan
autom4te: configure.ac: no such file or directory
autoscan: /usr/bin/autom4te failed with exit status: 1
[litao@vm0000131 hello]$ ll
total 8
-rw-rw-r-- 1 litao litao   0 Aug 12 12:03 autoscan.log
-rw-rw-r-- 1 litao litao 457 Aug 12 12:03 configure.scan
-rw-rw-r-- 1 litao litao  68 Aug 12 12:02 hello.c

已經(jīng)生成了configure.scan,autoscan.log文件

將configure.scan 修改為 configure.in,最后修改的內(nèi)容如下:

[litao@vm0000131 hello]$ mv configure.scan configure.in    
[litao@vm0000131 hello]$ vim configure.in 

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

AC_PREREQ(2.59)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_CONFIG_SRCDIR([hello.c])
#AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE(hello, 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)

二、acloacl

[litao@vm0000131 hello]$ aclocal 

生成 aclocal.m4 和 autom4te.cache (生成aclocal.m4的過(guò)程中涉及到configure.in)

[litao@vm0000131 hello]$ ll
total 44
-rw-rw-r-- 1 litao litao 31120 Aug 12 12:08 aclocal.m4
drwxr-xr-x 2 litao litao  4096 Aug 12 12:08 autom4te.cache
-rw-rw-r-- 1 litao litao     0 Aug 12 12:03 autoscan.log
-rw-rw-r-- 1 litao litao   496 Aug 12 12:08 configure.in
-rw-rw-r-- 1 litao litao    68 Aug 12 12:02 hello.c

三、antoconf

[litao@vm0000131 hello]$ autoconf
生成 configure (根據(jù) configure.in, 和 aclocal.m4)
[litao@vm0000131 hello]$ ll
total 168
-rw-rw-r-- 1 litao litao  31120 Aug 12 12:08 aclocal.m4
drwxr-xr-x 2 litao litao   4096 Aug 12 12:11 autom4te.cache
-rw-rw-r-- 1 litao litao      0 Aug 12 12:03 autoscan.log
-rwxrwxr-x 1 litao litao 122297 Aug 12 12:11 configure
-rw-rw-r-- 1 litao litao    496 Aug 12 12:08 configure.in
-rw-rw-r-- 1 litao litao     68 Aug 12 12:02 hello.c

四、編寫(xiě)Makefile.am:

AUTOMAKE_OPTIONS= foreign
bin_PROGRAMS= hello
hello_SOURCES= hello.c

五、automake

生成 Makefile.in, depcomp, install-sh, 和 missing (根據(jù) Makefile.am, 和 aclocal.m4)

[litao@vm0000131 hello]$ automake
configure.in: required file `./install-sh' not found
configure.in: required file `./missing' not found
Makefile.am: required file `./depcomp' not found
[litao@vm0000131 hello]$ automake --add-missing
configure.in: installing `./install-sh'
configure.in: installing `./missing'
Makefile.am: installing `./depcomp'
[litao@vm0000131 hello]$ ll
total 192
-rw-rw-r-- 1 litao litao  31120 Aug 12 12:08 aclocal.m4
drwxr-xr-x 2 litao litao   4096 Aug 12 12:14 autom4te.cache
-rw-rw-r-- 1 litao litao      0 Aug 12 12:03 autoscan.log
-rwxrwxr-x 1 litao litao 122297 Aug 12 12:11 configure
-rw-rw-r-- 1 litao litao    496 Aug 12 12:08 configure.in
lrwxrwxrwx 1 litao litao     31 Aug 12 12:16 depcomp -> /usr/share/automake-1.9/depcomp
-rw-rw-r-- 1 litao litao     68 Aug 12 12:02 hello.c
lrwxrwxrwx 1 litao litao     34 Aug 12 12:16 install-sh -> /usr/share/automake-1.9/install-sh
-rw-rw-r-- 1 litao litao     69 Aug 12 12:15 Makefile.am
-rw-rw-r-- 1 litao litao  16561 Aug 12 12:16 Makefile.in
lrwxrwxrwx 1 litao litao     31 Aug 12 12:16 missing -> /usr/share/automake-1.9/missing

六、configure
生成 Makefile, config.log, 和 config.status
轉(zhuǎn)自:http://hi.baidu.com/litaosmile/blog/item/0c5562139fe5ced9f6039ee3.html




posted on 2012-06-27 10:31 SunRise_at 閱讀(1730) 評(píng)論(1)  編輯 收藏 引用 所屬分類(lèi): linux開(kāi)發(fā)

評(píng)論

# re: Configure,Makefile.am, Makefile.in, Makefile文件之間關(guān)系 2012-06-29 11:36 zgpxgame
mark  回復(fù)  更多評(píng)論
  

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲一区二区三区免费观看| 欧美丝袜一区二区三区| 欧美激情精品久久久| 亚洲国产中文字幕在线观看| 欧美精品一区二区精品网| 亚洲最新合集| 久久精品国产一区二区三区| 伊人久久噜噜噜躁狠狠躁| 老司机67194精品线观看| 最近中文字幕日韩精品| 亚洲视频高清| 国产日韩欧美中文| 欧美凹凸一区二区三区视频| 99精品国产在热久久婷婷| 久久福利资源站| 亚洲国产综合91精品麻豆| 欧美午夜女人视频在线| 久久av资源网| 亚洲精品一区二| 香蕉乱码成人久久天堂爱免费| 好吊视频一区二区三区四区| 欧美精品色一区二区三区| 亚洲伊人伊色伊影伊综合网| 欧美第一黄色网| 性欧美大战久久久久久久免费观看 | 国产午夜精品视频| 欧美成人视屏| 先锋影音网一区二区| 亚洲二区视频| 久久精品视频在线| 亚洲天堂网在线观看| 激情欧美日韩| 国产精品一卡| 欧美精品一区二区久久婷婷| 午夜亚洲性色视频| 99这里只有久久精品视频| 久久综合久久综合这里只有精品| 一区二区三区 在线观看视频| 国内揄拍国内精品久久| 欧美日韩在线播放| 老司机aⅴ在线精品导航| 亚洲视频在线观看网站| 亚洲国产精品一区二区第四页av| 久久狠狠亚洲综合| 亚洲欧美国产精品桃花| 99亚洲精品| 亚洲高清自拍| 韩国成人福利片在线播放| 国产精品久久久久久久久动漫| 欧美电影美腿模特1979在线看| 小黄鸭视频精品导航| 一区二区三区免费网站| 亚洲精品国偷自产在线99热| 老牛影视一区二区三区| 久久精品一区二区三区不卡| 亚洲欧美国产va在线影院| 日韩天堂在线观看| 亚洲国产精品国自产拍av秋霞| 国产亚洲精品福利| 国产视频久久久久| 国产农村妇女精品一二区| 国产精品国产三级国产专区53| 欧美福利电影在线观看| 美女主播精品视频一二三四| 久久网站免费| 麻豆精品视频| 嫩模写真一区二区三区三州| 久久美女艺术照精彩视频福利播放| 性久久久久久久久| 午夜精品成人在线| 欧美一区二区三区啪啪| 亚洲欧美国产不卡| 午夜欧美不卡精品aaaaa| 亚洲男女自偷自拍| 亚洲女人小视频在线观看| 亚洲午夜未删减在线观看| 亚洲一区二区三区在线看| 亚洲在线网站| 欧美在线观看视频一区二区三区| 欧美怡红院视频| 久久―日本道色综合久久| 久久夜色精品国产欧美乱| 美日韩精品免费| 欧美极品在线观看| 欧美性大战久久久久久久| 国产精品www| 国产区二精品视| 精品99一区二区| 亚洲级视频在线观看免费1级| 亚洲美女诱惑| 午夜精品影院| 久久综合给合久久狠狠色| 你懂的国产精品| 日韩视频不卡中文| 小嫩嫩精品导航| 久久久久久久久久久成人| 欧美电影免费观看| 国产精品三级视频| 精品福利电影| 亚洲作爱视频| 久久国产成人| 亚洲国产精品久久精品怡红院| 亚洲精品视频在线看| 亚洲欧美日韩天堂| 久久久www成人免费精品| 美女国产一区| 日韩视频在线观看免费| 午夜视黄欧洲亚洲| 欧美精品成人一区二区在线观看 | 欧美久久久久久蜜桃| 欧美日韩综合在线| 在线观看国产成人av片| 在线视频免费在线观看一区二区| 欧美亚洲在线| 亚洲区中文字幕| 欧美一区二区久久久| 欧美大片在线观看| 国产一区二区精品久久| 一区二区激情小说| 裸体歌舞表演一区二区| 99国产精品| 玖玖玖国产精品| 国产欧美丝祙| 亚洲天堂男人| 亚洲国内高清视频| 久久国产精品毛片| 国产精品你懂的在线| 最新日韩在线视频| 久久久国产精品亚洲一区| 日韩一二在线观看| 免费欧美电影| 激情综合色综合久久综合| 亚洲欧美日韩国产综合| 亚洲日本在线视频观看| 久久精品人人做人人爽| 国产精品日韩专区| 一本久久综合亚洲鲁鲁五月天| 美女日韩欧美| 欧美一区二区在线| 国产精品一区二区久激情瑜伽| 99精品国产在热久久婷婷| 久久夜色精品亚洲噜噜国产mv| 亚洲一级片在线观看| 欧美日韩国产成人在线| 亚洲精品一区二区三区四区高清| 久久麻豆一区二区| 欧美一区二区三区视频在线| 国产精品天天看| 亚洲午夜精品久久久久久app| 亚洲区欧美区| 欧美电影在线免费观看网站| 亚洲国产欧美日韩| 久久午夜影视| 久久精品亚洲国产奇米99| 国产亚洲一区二区三区在线播放| 亚洲欧美视频| 亚洲欧美成人在线| 国产精品久久久久久久久久直播| 亚洲视频在线二区| 一区二区三区日韩精品视频| 欧美伦理一区二区| 99精品视频免费在线观看| 亚洲日本欧美日韩高观看| 欧美黄色片免费观看| 日韩视频免费观看高清在线视频| 欧美黑人在线播放| 免费在线看一区| 亚洲毛片一区| 亚洲日本免费| 国产精品videosex极品| 亚洲在线播放电影| 亚洲综合精品自拍| 国产日韩欧美成人| 久久久久久久久综合| 久久精品欧洲| 91久久亚洲| 亚洲另类在线一区| 欧美午夜美女看片| 欧美专区在线观看| 久久久久这里只有精品| 亚洲国产日日夜夜| 亚洲人成人一区二区三区| 欧美视频在线不卡| 久久超碰97中文字幕| 久久久999精品免费| 91久久精品www人人做人人爽| 亚洲国产日韩欧美在线99| 欧美日韩一区二区三区| 午夜天堂精品久久久久| 久久se精品一区精品二区| 亚洲国产精品日韩| 在线视频精品一区| 精品不卡一区| 99热在这里有精品免费| 国产视频精品xxxx| 亚洲国产婷婷香蕉久久久久久| 国产精品久久久爽爽爽麻豆色哟哟| 欧美在线看片| 欧美国产亚洲另类动漫| 香蕉亚洲视频|