linux --> Autoconf和Automake使用

 

   

1、生成Makefile流程圖

 

2、具體實例

  執行命令順序:autoscan; aclocal; autoconf; autoheader; automake --add-missing; ./configure; make; ./helloworld;javascript

一、建目錄

  在你的工做目錄下建一個helloworld目錄,用來存放helloworld程序及相關文件,如在/home/my/build下:html

$ mkdir helloword
$ cd helloworld

 

二、 helloworld.c

  編輯文件,完成後保存退出。如今在helloworld目錄下就應該有一個你本身寫的helloworld.c了。前端

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

 

三、生成configure

  $ autoscan
  $ ls
  configure.scan helloworld.c 

執行後在hellowrold目錄下會生成一個文件:configure.scan,能夠拿它做爲configure.ac的藍本。java

 

四、生成configure.ac

   如今將configure.scan更名爲configure.ac,而且編輯它,按下面的內容修改,去掉無關的語句:
複製代碼
   #                                               -*- Autoconf -*-
   # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) #AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) AC_INIT(HelloWorld, 1.0, jiangtengfei007@163.com) AM_INIT_AUTOMAKE(HelloWorld, 1.0) #這句話很重要,不然下面aclocal出錯 AC_CONFIG_SRCDIR([HelloWorld.c]) AC_CONFIG_HEADERS([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_CONFIG_FILES([Makefile]) AC_OUTPUT
複製代碼

 

五、執行aclocal和autoconf

  而後執行命令aclocal和autoconf,分別會產生aclocal.m4及configure兩個文件:shell

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

  能夠看到configure.ac內容是一些宏定義,這些宏經autoconf處理後會變成檢查系統特性、環境變量、軟件必須的參數的shell腳本。app

  autoconf 是用來生成自動配置軟件源代碼腳本(configure)的工具。configure腳本能獨立於autoconf運行,且在運行的過程當中,不須要用戶的干預。函數

  要生成configure文件,你必須告訴autoconf如何找到你所用的宏。方式是使用aclocal程序來生成你的aclocal.m4。工具

  aclocal根據configure.ac文件的內容,自動生成aclocal.m4文件。aclocal是一個perl 腳本程序,它的定義是:「aclocal - create aclocal.m4 by scanning configure.ac」。post

  autoconf從configure.ac這個列舉編譯軟件時所須要各類參數的模板文件中建立configure。測試

  autoconf須要GNU m4宏處理器來處理aclocal.m4,生成configure腳本。

  m4是一個宏處理器。將輸入拷貝到輸出,同時將宏展開。宏能夠是內嵌的,也能夠是用戶定義的。除了能夠展開宏,m4還有一些內建的函數,用來引用文件,執行命令,整數運算,文本操做,循環等。m4既能夠做爲編譯器的前端,也能夠單獨做爲一個宏處理器.

 
 

六、執行autoheader

  在執行automake --add-missing以前執行autoheade,  生成config.h.in
 
 

七、新建Makefile.am

AUTOMAKE_OPTIONS=foreign

bin_PROGRAMS=helloworld helloworld_SOURCES=helloworld.c 

  automake會根據你寫的Makefile.am來自動生成Makefile.in。Makefile.am中定義的宏和目標,會指導automake生成指定的代碼。例如,宏bin_PROGRAMS將致使編譯和鏈接的目標被生成。

 

八、運行automake

複製代碼
➜  AutoConf_ automake --add-missing
configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation configure.ac:12: installing './compile' configure.ac:7: installing './install-sh' configure.ac:7: installing './missing' Makefile.am: installing './depcomp'
複製代碼

  automake會根據Makefile.am文件產生一些文件,包含最重要的Makefile.in。

 

九、執行configure生成Makefile

複製代碼
➜  ./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... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether gcc understands -c and -o together... yes checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: executing depfiles commands 
➜  ls -l Makefile -rw-rw-r-- 1 yutao yutao 15035 Oct 15 10:40 Makefile 
複製代碼

你能夠看到,此時Makefile已經產生出來了。

 

十、使用Makefile編譯代碼

➜  make
/Applications/Xcode.app/Contents/Developer/usr/bin/make  all-am gcc -DHAVE_CONFIG_H -I. -g -O2 -MT helloworld.o -MD -MP -MF .deps/helloworld.Tpo -c -o helloworld.o helloworld.c mv -f .deps/helloworld.Tpo .deps/helloworld.Po gcc -g -O2 -o helloworld helloworld.o

 

十一、運行helloworld

➜  ./helloworld
Hello World!!!!

  這樣helloworld就編譯出來了,你若是按上面的步驟來作的話,應該也會很容易地編譯出正確的helloworld文件。你還能夠試着使用一些其餘的make命令,如make clean,make install,make dist,看看它們會給你什麼樣的效果。感受如何?本身也能寫出這麼專業的Makefile,老闆必定會對你另眼相看。

 

3、命令詳解 

一、 autoscan

  autoscan是用來掃描源代碼目錄生成configure.scan文件的。autoscan能夠用目錄名作爲參數,但若是你不使用參數的話,那麼autoscan將認爲使用的是當前目錄。autoscan將掃描你所指定目錄中的源文件,並建立configure.scan文件。

 

二、 configure.scan

  configure.scan包含了系統配置的基本選項,裏面都是一些宏定義。咱們須要將它更名爲configure.ac

 

三、 aclocal

  aclocal是一個perl 腳本程序。aclocal根據configure.ac文件的內容,自動生成aclocal.m4文件。aclocal的定義是:「aclocal - create aclocal.m4 by scanning configure.ac」。

 

四、 autoconf

  使用autoconf,根據configure.in和aclocal.m4來產生configure文件。configure是一個腳本,它能設置源程序來適應各類不一樣的操做系統平臺,而且根據不一樣的系統來產生合適的Makefile,從而可使你的源代碼能在不一樣的操做系統平臺上被編譯出來。

  configure.ac文件的內容是一些宏,這些宏通過autoconf 處理後會變成檢查系統特性、環境變量、軟件必須的參數的shell腳本。configure.ac文件中的宏的順序並無規定,可是你必須在全部宏的最前面和最後面分別加上AC_INIT宏和AC_OUTPUT宏。

  在configure.ini中:

複製代碼
  #號表示註釋,這個宏後面的內容將被忽略。

  AC_INIT(FILE) //這個宏用來檢查源代碼所在的路徑。   AM_INIT_AUTOMAKE(PACKAGE, VERSION) //這個宏是必須的,它描述了咱們將要生成的軟件包的名字及其版本號:PACKAGE是軟件包的名字,VERSION是版本號。當你使用make dist命令時,它會給你生成一個相似helloworld-1.0.tar.gz的軟件發行包,其中就有對應的軟件包的名字和版本號。   AC_PROG_CC  //這個宏將檢查系統所用的C編譯器。   AC_OUTPUT(FILE)  //這個宏是咱們要輸出的Makefile的名字。
複製代碼

  咱們在使用automake時,實際上還須要用到其餘的一些宏,但咱們能夠用aclocal 來幫咱們自動產生。執行aclocal後咱們會獲得aclocal.m4文件。   產生了configure.ac和aclocal.m4 兩個宏文件後,咱們就可使用autoconf來產生configure文件了。

 

五、 Makefile.am

  Makefile.am是用來生成Makefile.in的,須要你手工書寫。Makefile.am中定義了一些內容:

  AUTOMAKE_OPTIONS  //在執行automake時,它會檢查目錄下是否存在標準GNU軟件包中應具有的各類文件,例如AUTHORS、ChangeLog、NEWS等文件。咱們將其設置成foreign時,automake會改用通常軟件包的標準來檢查。   bin_PROGRAMS  //這個是指定咱們所要產生的可執行文件的文件名。若是你要產生多個可執行文件,那麼在各個名字間用空格隔開。   helloworld_SOURCES  //這個是指定產生「helloworld」時所須要的源代碼。若是它用到了多個源文件,那麼請使用空格符號將它們隔開。好比須要helloworld.h,helloworld.c那麼請寫成helloworld_SOURCES= helloworld.h helloworld.c。

  若是你在bin_PROGRAMS定義了多個可執行文件,則對應每一個可執行文件都要定義相對的filename_SOURCES。

 

六、 automake

  使用automake,根據configure.in和Makefile.am來產生Makefile.in。

  --add-missing  //定義是「add missing standard files to package」,它會讓automake加入一個標準的軟件包所必須的一些文件。

  用automake產生出來的Makefile.in文件是符合GNU Makefile慣例的,接下來咱們只要執行configure這個shell 腳本就能夠產生合適的 Makefile 文件了。

  

七、 Makefile

  在符合GNU Makefiel慣例的Makefile中,包含了一些基本的預先定義的操做:

複製代碼
  make      //根據Makefile編譯源代碼,鏈接,生成目標文件,可執行文件。   make clean  //清除上次的make命令所產生的object文件(後綴爲「.o」的文件)及可執行文件。   make install  //將編譯成功的可執行文件安裝到系統目錄中,通常爲/usr/local/bin目錄。   make list  //產生髮布軟件包文件(即distribution package)。這個命令會將可執行文件及相關文件打包成一個tar.gz壓縮的文件用來做爲發佈軟件的軟件包。它會在當前目錄下生成一個名字相似「PACKAGE-VERSION.tar.gz」的文件。PACKAGE和VERSION,是咱們在configure.ac中定義的AM_INIT_AUTOMAKE(PACKAGE, VERSION)。   make distcheck  //生成發佈軟件包並對其進行測試檢查,以肯定發佈包的正確性。這個操做將自動把壓縮包文件解開,而後執行configure命令,而且執行make,來確認編譯不出現錯誤,最後提示你軟件包已經準備好,能夠發佈了。   make distclean  //相似make clean,但同時也將configure生成的文件所有刪除掉,包括Makefile。
相關文章
相關標籤/搜索