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

作為Linux下的程序開發(fā)人員,大家一定都遇到過Makefile,用make命令來編譯自己寫的程序確實(shí)是很方便。一般情況下,大家都是手工寫一個(gè)簡單Makefile,如果要想寫出一個(gè)符合自由軟件慣例的Makefile就不那么容易了。 


在本文中,將給大家介紹如何使用 autoconf和automake兩個(gè)工具來幫助我們自動(dòng)地生成符合自由軟件慣例的Makefile,這樣就可以象常見的GNU程序一樣,只要使用“./configure”,“make”,“make install”就可以把程序安裝到Linux系統(tǒng)中去了。這將特別適合想做開放源代碼軟件的程序開發(fā)人員,又或如果你只是自己寫些小的Toy程序,那么這個(gè)文章對你也會(huì)有很大的幫助。

編譯一個(gè)簡單的源文件main.c,需要自動(dòng)生成一個(gè)makefile,以下是步驟:

第一步:

----------

在/root/project/main目錄下創(chuàng)建一個(gè)文件main.c,其內(nèi)容如下:

------------------------------------------------

#include <stdio.h>

int main(int argc, char** argv)

{

printf("Hello, Auto Makefile!\n");

return 0;

}

------------------------------------------------

此時(shí)狀態(tài)如下:

[root@localhost main]# pwd

/root/project/main

[root@localhost main]# ls

main.c

[root@localhost main]#

第二步:

----------

運(yùn)行 autoscan , 自動(dòng)創(chuàng)建兩個(gè)文件: autoscan.log configure.scan

此時(shí)狀態(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)錯(cuò)誤輸出打印一條錯(cuò)誤消息并不會(huì)創(chuàng)建configure。

AC_PREREQ(2.61)

#

# 初始化,定義軟件的基本信息,包括設(shè)置包的全稱,版本號以及報(bào)告BUG時(shí)需要用的郵箱地址

#

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

------------------------------------------------

修改動(dòng)作:

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])

------------------------------------------------

第四步:

運(yùn)行 aclocal, 生成一個(gè)“aclocal.m4”文件和一個(gè)緩沖文件夾autom4te.cache,該文件主要處理本地的宏定義。

此時(shí)的狀態(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]#

第五步:

運(yùn)行 autoconf, 目的是生成 configure

此時(shí)的狀態(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]#

第六步:

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

此時(shí)的狀態(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]#

第七步:

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

首先

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

這個(gè)Makefile.am的內(nèi)容如下:

------------------------------------------------

AUTOMAKE_OPTIONS=foreign

bin_PROGRAMS=main

main_SOURCES=main.c

------------------------------------------------

下面對該腳本文件的對應(yīng)項(xiàng)進(jìn)行解釋。

其中的AUTOMAKE_OPTIONS為設(shè)置automake的選項(xiàng)。由于GNU(在第1章中已經(jīng)有所介紹)對自己發(fā)布的軟件有嚴(yán)格的規(guī)范,比如必須附 帶許可證聲明文件COPYING等,否則automake執(zhí)行時(shí)會(huì)報(bào)錯(cuò)。automake提供了三種軟件等級:foreign、gnu和gnits,讓用 戶選擇采用,默認(rèn)等級為gnu。在本例使用foreign等級,它只檢測必須的文件。

bin_PROGRAMS定義要產(chǎn)生的執(zhí)行文件名。如果要產(chǎn)生多個(gè)執(zhí)行文件,每個(gè)文件名用空格隔開。

main_SOURCES定義“main”這個(gè)執(zhí)行程序所需要的原始文件。如果”main”這個(gè)程序是由多個(gè)原始文件所產(chǎn)生的,則必須把它所用到的所有原 始文件都列出來,并用空格隔開。例如:若目標(biāo)體“main”需要“main.c”、“sunq.c”、“main.h”三個(gè)依賴文件,則定義 main_SOURCES=main.c sunq.c main.h。要注意的是,如果要定義多個(gè)執(zhí)行文件,則對每個(gè)執(zhí)行程序都要定義相應(yīng)的file_SOURCES。

其次

使用automake對其生成“configure.in”文件,在這里使用選項(xiàng)“—adding-missing”可以讓automake自動(dòng)添加有一些必需的腳本文件。

運(yùn)行后的狀態(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]#

------------------------------------------------

第八步

運(yùn)行configure,在這一步中,通過運(yùn)行自動(dòng)配置設(shè)置文件configure,把Makefile.in變成了最終的Makefile。

運(yùn)行的結(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]#

------------------------------------------------

第九步

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

此時(shí)的狀態(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]#

------------------------------------------------

第十步

運(yùn)行生成的文件 main:

------------------------------------------------

[root@localhost main]# ./main

Hello, Auto Makefile!

[root@localhost main]#

------------------------------------------------

我用的是ubuntu

以上就是全文了.但有一處要改:用aclocal

全報(bào)有一個(gè)m4文件有錯(cuò).找到報(bào)錯(cuò)的那一行.把變量加個(gè)中括號就可以了

@import url(http://m.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);
posted on 2011-08-01 17:40 大寶天天見 閱讀(715) 評論(0)  編輯 收藏 引用 所屬分類: Other
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲欧洲日产国产网站| 久久九九精品99国产精品| 亚洲一区免费在线观看| 亚洲美女在线一区| 一本色道**综合亚洲精品蜜桃冫| 亚洲国内高清视频| 亚洲区在线播放| 亚洲国产欧美日韩精品| 99国产精品国产精品毛片| 一区二区三区av| 亚洲欧美美女| 久久久久久国产精品mv| 美女精品在线观看| 欧美激情精品久久久久久蜜臀| 欧美成人精品在线| 亚洲日本中文字幕| 99国产精品久久久| 翔田千里一区二区| 欧美大片免费观看| 国产精品网曝门| 在线精品视频免费观看 | 欲色影视综合吧| 日韩天天综合| 久久久精品欧美丰满| 国产老女人精品毛片久久| 国产一区二区三区久久久| 亚洲国产日韩一区| 欧美一级欧美一级在线播放| 欧美刺激性大交免费视频| 一区二区免费在线视频| 久久久久久穴| 国产精品久久久久久久电影 | 亚洲伦理自拍| 久久精品网址| 亚洲视频一区在线观看| 男人的天堂成人在线| 国产精品在线看| 夜夜嗨av一区二区三区网页| 久久综合中文色婷婷| 国产精品99久久久久久久女警| 久久综合九色99| 国产热re99久久6国产精品| 一本一道久久综合狠狠老精东影业| 老巨人导航500精品| 亚洲专区免费| 亚洲精品乱码久久久久久黑人| 久久久精品日韩欧美| 国产精品稀缺呦系列在线| 99视频精品免费观看| 美女主播一区| 久久不射2019中文字幕| 国产欧美精品在线| 亚洲免费中文字幕| 99精品福利视频| 欧美精品电影| 亚洲区在线播放| 亚洲第一精品电影| 久久综合伊人77777麻豆| 黑丝一区二区| 91久久精品国产| 免费亚洲网站| 免费在线国产精品| 亚洲欧洲精品一区二区三区波多野1战4 | 国产一区自拍视频| 久久国产精品一区二区三区四区| 在线视频欧美日韩| 亚洲激情国产| 久久国产一二区| 欧美一级视频精品观看| 国产欧美一区二区三区另类精品 | 性色一区二区| 欧美xxx在线观看| 欧美激情综合色| 欧美成人在线网站| 老司机精品导航| 欧美在线观看一区| 一区二区三区在线看| 久久综合久久综合这里只有精品| 久久久国产视频91| 欧美日韩在线观看一区二区三区| 99国产精品一区| 一卡二卡3卡四卡高清精品视频| 欧美视频在线一区二区三区| 午夜精品视频| 久久成人免费网| 亚洲国产91色在线| 一本久道久久综合中文字幕| 国产酒店精品激情| 欧美成人激情在线| 欧美日韩国产不卡| 久久久精品视频成人| 免费在线亚洲欧美| 午夜一区二区三视频在线观看| 久久久久久久久久看片| 一个色综合导航| 久久爱另类一区二区小说| 亚洲精品你懂的| 亚洲永久免费av| 亚洲美女免费视频| 午夜视频精品| 日韩一级在线| 久久精品综合| 午夜精品影院| 欧美韩国日本一区| 久久国产欧美精品| 欧美性一区二区| 免费一级欧美片在线播放| 国产精品久久久久9999高清| 亚洲国产aⅴ天堂久久| 国产精品乱人伦中文| 欧美xart系列高清| 国产综合色产在线精品| 一本一本久久| 亚洲精品女人| 午夜一区二区三区不卡视频| 亚洲无线一线二线三线区别av| 久色婷婷小香蕉久久| 性欧美精品高清| 欧美日韩免费观看一区二区三区| 欧美 日韩 国产精品免费观看| 国产精品久久久久久久久搜平片| 亚洲电影视频在线| 激情婷婷欧美| 欧美在线观看视频一区二区三区| 一本色道久久| 美日韩精品免费观看视频| 久久精品国产96久久久香蕉| 国产精品伦一区| 一区二区三区国产精品| 亚洲美女性视频| 麻豆91精品| 欧美成人综合| 亚洲黄色有码视频| 老司机一区二区三区| 美女网站久久| 久久久欧美一区二区| 欧美一级久久久| 午夜免费在线观看精品视频| 亚洲欧美精品在线观看| 欧美性猛交xxxx乱大交退制版| 亚洲高清在线| 亚洲黄色av一区| 欧美大片第1页| 亚洲人成在线观看| 一区二区三区免费网站| 欧美天堂在线观看| 亚洲网站在线看| 欧美诱惑福利视频| 国内成人精品2018免费看 | 先锋影院在线亚洲| 国产精品美女999| 西西裸体人体做爰大胆久久久| 欧美一区二区私人影院日本| 国产欧美一区二区视频| 欧美在线视频不卡| 久久综合影视| 日韩亚洲欧美一区| 国产精品高清网站| 香蕉久久国产| 亚洲福利视频免费观看| 一区二区三区欧美视频| 国产精品美女一区二区在线观看| 欧美一级午夜免费电影| 久色成人在线| 99在线精品视频在线观看| 国产精品国产三级国产aⅴ浪潮| 亚洲欧美日韩一区二区三区在线观看| 久久精品国产亚洲高清剧情介绍| 亚洲国产精品精华液网站| 欧美体内she精视频在线观看| 欧美一级艳片视频免费观看| 欧美韩日视频| 香蕉久久一区二区不卡无毒影院| 亚洲第一网站| 国产日韩精品在线观看| 欧美成人免费网站| 午夜国产不卡在线观看视频| 亚洲二区在线视频| 欧美一级久久| 一区二区免费在线播放| 狠狠久久婷婷| 国产精品久久久久久久久借妻| 葵司免费一区二区三区四区五区| 亚洲一二区在线| 91久久国产精品91久久性色| 久久精品卡一| 亚洲欧美成人| 亚洲美女黄网| 在线观看日韩国产| 国产欧美韩日| 欧美三级在线播放| 欧美黄色aa电影| 久久综合色8888| 欧美在线啊v一区| 亚洲一区二区三区欧美| 亚洲剧情一区二区| 欧美高清视频一区| 久久综合亚州| 久久综合狠狠综合久久激情| 欧美一区二区在线|