Linux 環境下 Makefile 檔案製作淺談(一)(轉)

post0發表於2007-08-11
Linux 環境下 Makefile 檔案製作淺談(一)(轉)[@more@]

Linux 環境下 Makefile 檔案製作淺談(一)

編寫:Leaf Zhou

EMAIL:leaf_zhou_8@hotmail.com

可自由複製但禁止刪改

2003-10-12

無論對於一個初學者還是一個資深的Linux程式設計師,編寫Makefile檔案都是一件很麻煩的事;再者,開發人員應該把主要的精力放在程式程式碼的編寫上,而在Makefile檔案花費太多的精力顯然是不明智的;還有,對於不同的處理器架構,往往編譯器不同,環境不同,特別是一些嵌入式系統中的各種程式的編譯,於是移植問題也使Makefile檔案編寫趨於複雜,也顯得這個問題很重要。對於這些問題Linux的高手們早已想到了,所以他們開發了一些能夠自動生成Makefile檔案的工具。他們就是下面這些工具:

〉GNU Automake

〉GNU Autoconf

〉GNU m4

〉perl

〉GNU Libtool

因此您的作業系統必須安裝以上軟體,否則就不能夠自動生成Makefile檔案或者在生成的過程中出現各種各樣的問題。用 autoconf/automake/autoheader工具來處理各種移植性的問題,用這些工具完成系統配置資訊的收集,製作Makefile檔案。然後在打算編譯原始碼時只需要透過 "./configure; make"這樣簡單的命令就可以得到乾淨利落的編譯。

製作Makefile檔案需要以下幾步:

1〉建立編譯目錄和原始碼目錄及原始碼檔案(即要編譯的原始檔)

[root@localhost leaf]#mkdir testmk

[root@localhost leaf]#cd testmk

[root@localhost testmk]#vi hello.c

編輯hello.c檔案如下內容:

/*filename:hello.c*/

#include

int main(int argc,char **argv)

{

printf("%s ","Hello, World!")

return 0;

}

2〉利用autoscan工具產生一個configure.in檔案的模板檔案configure.scan檔案:

[root@localhost testmk]#autoscan

[root@localhost testmk]#ls

configure.scan hello.c

3〉把configure.scan檔案更名為configure.in檔案,並編譯其內容如下:

[root@localhost testmk]#mv configure.scan configure.in

[root@localhost testmk]#vi configure.in

dnl Process this file with autoconf to produce a configure script.

AC_INIT(hello.c)

dnl Add the file by leaf

AM_INIT_AUTOMAKE(hello,1.0)

dnl Checks for programs.

AC_PROG_CC

dnl Checks for libraries.

dnl Checks for header files.

dnl Checks for typedefs, structures, and compiler characteristics.

dnl Checks for library functions.

AC_OUTPUT(Makefile)

4〉執行aclocal,會產生aclocal.m4檔案

[root@localhost testmk]#aclocal

[root@localhost testmk]#ls

aclocal.m4 configure.in hello.c

5〉執行autoconf,會產生confiure檔案

[root@localhost testmk]#autoconf

[root@localhost testmk]#ls

aclocal.m4 [autom4te.cache] configure configure.in hello.c

6〉建立檔案Makefile.am並編輯其內容如下:

AUTOMAKE_OPTIONS=foreign

bin_PROGRAMS=hello

hello_SOURCES=hello.c

其中,hello為編譯後產生的可執行檔名稱,而第三行等號後面為原始檔列表

7〉執行automake程式,automake程式會根據Makefile.am產生一些檔案,其中最重要的是Makefile.in檔案:

[root@localhost testmk]#automake --add-missing

configure.in: installing `./install-sh'

configure.in: installing `./mkinstalldirs'

configure.in: installing `./missing'

Makefile.am: installing `./depcomp'

[root@localhost testmk]#ls

aclocal.m4 [autom4te.cache] configure configure.in depcomp

hello.c install-sh Makefile.am Makefile.in missing

mkinstalldirs

8〉執行configure指令碼,生成我們需要的Makefile檔案。

[root@localhost testmk]#./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

9〉最後只執行make就大功告成了:

[root@localhost testmk]#make

source='hello.c' object='hello.o' libtool=no

depfile='.deps/hello.Po' tmpdepfile='.deps/hello.TPo'

depmode=gcc3 /bin/sh ./depcomp

gcc -DPACKAGE_NAME="" -DPACKAGE_TARNAME="" -DPACKAGE_VERSION="" -DPACKAGE_STRING="" -DPACKAGE_BUGREPORT="" -DPACKAGE="hello" -DVERSION="1.0" -I. -I. -g -O2 -c `test -f 'hello.c' || echo './'`hello.c

gcc -g -O2 -o hello hello.o

備註:

1.以上內容均在RedHat Linux 9.0環境下測試透過。

2.參考書目《Linux 程式設計權威指南》於明儉、陳向陽、方漢編著

3.其它國內外網站資料

4.RedHat 9.0下帶的程式檔案及版本

autoconf-2.57-3.noarch.rpm

automake-1.6.3-5.noarch.rpm

gcc-3.2.2-5.i386.rpm

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-944612/,如需轉載,請註明出處,否則將追究法律責任。

相關文章