Linux 環境下 Makefile 檔案製作淺談(一)(轉)
Linux 環境下 Makefile 檔案製作淺談(一)(轉)[@more@]Linux 環境下 Makefile 檔案製作淺談(一)編寫:Leaf ZhouEMAIL: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]#lsconfigure.scan hello.c3〉把configure.scan檔案更名為configure.in檔案,並編譯其內容如下:[root@localhost testmk]#mv configure.scan configure.in[root@localhost testmk]#vi configure.indnl Process this file with autoconf to produce a configure script.AC_INIT(hello.c)dnl Add the file by leafAM_INIT_AUTOMAKE(hello,1.0)dnl Checks for programs.AC_PROG_CCdnl 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]#lsaclocal.m4 configure.in hello.c5〉執行autoconf,會產生confiure檔案[root@localhost testmk]#autoconf[root@localhost testmk]#lsaclocal.m4 [autom4te.cache] configure configure.in hello.c6〉建立檔案Makefile.am並編輯其內容如下:AUTOMAKE_OPTIONS=foreignbin_PROGRAMS=hellohello_SOURCES=hello.c其中,hello為編譯後產生的可執行檔名稱,而第三行等號後面為原始檔列表7〉執行automake程式,automake程式會根據Makefile.am產生一些檔案,其中最重要的是Makefile.in檔案:[root@localhost testmk]#automake --add-missingconfigure.in: installing `./install-sh'configure.in: installing `./mkinstalldirs'configure.in: installing `./missing'Makefile.am: installing `./depcomp'[root@localhost testmk]#lsaclocal.m4 [autom4te.cache] configure configure.in depcomphello.c install-sh Makefile.am Makefile.in missingmkinstalldirs8〉執行configure指令碼,生成我們需要的Makefile檔案。[root@localhost testmk]#./configurechecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for gawk... gawkchecking whether make sets $(MAKE)... yeschecking for gcc... gccchecking for C compiler default output... a.outchecking whether the C compiler works... yeschecking whether we are cross compiling... nochecking for suffix of executables...checking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether gcc accepts -g... yeschecking for gcc option to accept ANSI C... none neededchecking for style of include used by make... GNUchecking dependency style of gcc... gcc3configure: creating ./config.statusconfig.status: creating Makefileconfig.status: executing depfiles commands9〉最後只執行make就大功告成了:[root@localhost testmk]#makesource='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.cgcc -g -O2 -o hello hello.o備註:1.以上內容均在RedHat Linux 9.0環境下測試透過。2.參考書目《Linux 程式設計權威指南》於明儉、陳向陽、方漢編著3.其它國內外網站資料4.RedHat 9.0下帶的程式檔案及版本autoconf-2.57-3.noarch.rpmautomake-1.6.3-5.noarch.rpmgcc-3.2.2-5.i386.rpm
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-944612/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux 環境下 Makefile 檔案製作淺談(二)(轉)Linux
- 淺談 Linux 下 Makefile 編寫Linux
- Linux環境下sqlldr一個csv檔案LinuxSQL
- linux環境下使用XFS檔案系統(轉)Linux
- 淺談Linux的檔案系統(轉)Linux
- 淺談基於Linux的Intranet環境建造(轉)Linux
- 淺談AIX環境下的Java效能調優AIJava
- Linux /proc 目錄下檔案粗談(轉)Linux
- linux環境下的undelete(轉)Linuxdelete
- 也談一下檔案上傳 (轉)
- Linux/Unix下pid檔案作用淺析(轉)Linux
- 輕鬆製作PDF檔案(轉)
- linux下使用vscode和makefile搭建C++開發環境LinuxVSCodeC++開發環境
- alpine 製作 PHP 環境映象PHP
- 淺談hosts檔案
- 在Linux系統環境下使用GFS檔案系統Linux
- Unix環境和Windows環境下Oracle引數檔案位置:WindowsOracle
- 定製AIX作業系統的shell環境(轉)AI作業系統
- unix下複製檔案(轉)
- 在linux下搭建wiki環境【轉】Linux
- 自己編寫JAVA環境下的檔案上傳元件 (轉)Java元件
- 淺談公司java開發執行環境搭建(ubuntu環境)JavaUbuntu
- Windows XP 映像檔案製作指南(轉)Windows
- 在Linux下ssh 環境的登入 和 檔案拷貝Linux
- Makefile引用與環境變數變數
- 開發環境下PP檔案的建立開發環境
- 製作u盤linux根檔案系統掛不上!(轉)Linux
- Linux下的廣播程式製作(轉)Linux
- 淺談瀏覽器執行環境下的event loop機制瀏覽器OOP
- 製作ISO檔案
- makefile檔案案例
- 淺談機房接地線的製作方法
- 如何製作一個 RPM 檔案
- 新手入門:淺談Linux的檔案系統Linux
- linux下主要檔案(轉)Linux
- 淺談Linux下的媒體播放器(轉)Linux播放器
- Linux下DISPLAY環境變數之作用---轉Linux變數
- 在Linux環境下執行DOS命令(轉)Linux