真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

LinuxAutomake工具生成Makefile軟件實(shí)現(xiàn)過(guò)程

這篇文章主要講解了“Linux Automake工具生成Makefile軟件實(shí)現(xiàn)過(guò)程”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Linux Automake工具生成Makefile軟件實(shí)現(xiàn)過(guò)程”吧!

成都創(chuàng)新互聯(lián)公司長(zhǎng)期為近1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開(kāi)放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為敦煌企業(yè)提供專業(yè)的成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、外貿(mào)網(wǎng)站建設(shè),敦煌網(wǎng)站改版等技術(shù)服務(wù)。擁有十余年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開(kāi)發(fā)。

使用的環(huán)境,本文所提到的程序是基于Linux發(fā)行版本:Fedora Core release 1,它包含了我們要用到的Linux Automake,automake。 從helloworld入手,我們從大家最常使用的例子程序helloworld開(kāi)始。 下面的過(guò)程如果簡(jiǎn)單地說(shuō)來(lái)就是:新建三個(gè)文件:
helloworld.c
configure.in
Makefile.am

然后執(zhí)行:
aclocal; autoconf; automake --add-missing; ./configure; make; ./helloworld
就可以看到Makefile被產(chǎn)生出來(lái),而且可以將helloworld.c編譯通過(guò)。
很簡(jiǎn)單吧,幾條命令就可以做出一個(gè)符合慣例的Makefile,感覺(jué)如何呀。

現(xiàn)在開(kāi)始介紹Linux Automake工具生成Makefile軟件實(shí)現(xiàn)步驟詳細(xì)的過(guò)程:

1、建目錄
在你的工作目錄下建一個(gè)helloworld目錄,我們用它來(lái)存放helloworld程序及相關(guān)文件,如在/home/my/build下:
$ mkdir helloword
$ cd helloworld

2、 helloworld.c
然后用你自己最喜歡的編輯器寫(xiě)一個(gè)hellowrold.c文件,如命令:vi helloworld.c。使用下面的代碼作為helloworld.c的內(nèi)容。

int main(int argc, char** argv)  {  printf("Hello, Linux World!\n");  return 0;  }

完成后保存退出。
現(xiàn)在在helloworld目錄下就應(yīng)該有一個(gè)你自己寫(xiě)的helloworld.c了。

3、生成configure
我們使用autoscan命令來(lái)幫助我們根據(jù)目錄下的源代碼生成一個(gè)configure.in的模板文件。
命令:
$ autoscan
$ ls
configure.scan helloworld.c
執(zhí)行后在hellowrold目錄下會(huì)生成一個(gè)文件:configure.scan,我們可以拿它作為configure.in的藍(lán)本。
現(xiàn)在將configure.scan改名為configure.in,并且編輯它,按下面的內(nèi)容修改,去掉無(wú)關(guān)的語(yǔ)句:
configure.in內(nèi)容開(kāi)始

# -*- Autoconf -*-  # Process this file with autoconf to produce a configure script.   AC_INIT(helloworld.c)  AM_INIT_AUTOMAKE(helloworld, 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)

configure.in內(nèi)容結(jié)束
然后執(zhí)行命令aclocal和autoconf,分別會(huì)產(chǎn)生aclocal.m4及configure兩個(gè)文件:

$ aclocal   $ls   aclocal.m4 configure.in helloworld.c   $ autoconf   $ ls   aclocal.m4 autom4te.cache configure configure.in helloworld.c

大家可以看到configure.in內(nèi)容是一些宏定義,這些宏經(jīng)autoconf處理后會(huì)變成檢查系統(tǒng)特性、環(huán)境變量、軟件必須的參數(shù)的shell腳本。 autoconf 是用來(lái)生成自動(dòng)配置軟件源代碼腳本(configure)的工具。configure腳本能獨(dú)立于autoconf運(yùn)行,且在運(yùn)行的過(guò)程中,不需要用戶的干預(yù)。 要生成configure文件,你必須告訴autoconf如何找到你所用的宏。方式是使用aclocal程序來(lái)生成你的aclocal.m4。
 
aclocal根據(jù)configure.in文件的內(nèi)容,自動(dòng)生成aclocal.m4文件。aclocal是一個(gè)perl 腳本程序,它的定義是:“aclocal - create aclocal.m4 by scanning configure.ac”。 autoconf從configure.in這個(gè)列舉編譯軟件時(shí)所需要各種參數(shù)的模板文件中創(chuàng)建configure。 autoconf需要GNU m4宏處理器來(lái)處理aclocal.m4,生成configure腳本。 m4是一個(gè)宏處理器。將輸入拷貝到輸出,同時(shí)將宏展開(kāi)。宏可以是內(nèi)嵌的,也可以是用戶定義的。除了可以展開(kāi)宏,m4還有一些內(nèi)建的函數(shù),用來(lái)引用文件,執(zhí)行命令,整數(shù)運(yùn)算,文本操作,循環(huán)等。m4既可以作為編譯器的前端,也可以單獨(dú)作為一個(gè)宏處理器。

4、新建Makefile.am
新建Makefile.am文件,命令:
$ vi Makefile.am
內(nèi)容如下:
AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=helloworld
helloworld_SOURCES=helloworld.c
automake會(huì)根據(jù)你寫(xiě)的Makefile.am來(lái)自動(dòng)生成Makefile.in。
Makefile.am中定義的宏和目標(biāo),會(huì)指導(dǎo)automake生成指定的代碼。例如,宏bin_PROGRAMS將導(dǎo)致編譯和連接的目標(biāo)被生成。

5、運(yùn)行automake
命令:

$ automake --add-missing  configure.in: installing `./install-sh'  configure.in: installing `./mkinstalldirs'  configure.in: installing `./missing'  Makefile.am: installing `./depcomp'


automake會(huì)根據(jù)Makefile.am文件產(chǎn)生一些文件,包含最重要的Makefile.in。

6、執(zhí)行configure生成Makefile

$ ./configure   checking for a BSD-compatible install... /usr/bin/install -c  checking whether build environment is sane... yes  checking for gawk... gawk  checking whether make sets $(MAKE)... yes  checking for gcc... gcc  checking for C compiler default output... 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 ANSI C... 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: executing depfiles commands  $ ls -l Makefile  -rw-rw-r-- 1 yutao yutao 15035 Oct 15 10:40 Makefile

你可以看到,此時(shí)Makefile已經(jīng)產(chǎn)生出來(lái)了。

7、使用Makefile編譯代碼

$ make  if gcc -DPACKAGE_NAME="" -DPACKAGE_TARNAME="" -DPACKAGE_VERSION="" -   DPACKAGE_STRING="" -DPACKAGE_BUGREPORT="" -DPACKAGE="helloworld" -DVERSION="1.0"   -I. -I. -g -O2 -MT helloworld.o -MD -MP -MF ".deps/helloworld.Tpo" \  -c -o helloworld.o `test -f 'helloworld.c' || echo './'`helloworld.c; \  then mv -f ".deps/helloworld.Tpo" ".deps/helloworld.Po"; \  else rm -f ".deps/helloworld.Tpo"; exit 1; \  fi  gcc -g -O2 -o helloworld helloworld.o  運(yùn)行helloworld   $ ./helloworld   Hello, Linux World!

感謝各位的閱讀,以上就是“Linux Automake工具生成Makefile軟件實(shí)現(xiàn)過(guò)程”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Linux Automake工具生成Makefile軟件實(shí)現(xiàn)過(guò)程這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


本文名稱:LinuxAutomake工具生成Makefile軟件實(shí)現(xiàn)過(guò)程
文章路徑:http://weahome.cn/article/iisoog.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部