Linux 環境下 Makefile 檔案製作淺談(二)(轉)
Linux 環境下 Makefile 檔案製作淺談(二)(轉)[@more@]編寫:Leaf ZhouEMAIL:leaf_zhou_8@hotmail.com可自由複製但禁止刪改2003-10-15在介紹了簡單的如何產生Makefile檔案之後,相信已經能夠編寫Makefile檔案了,但那還遠遠不夠,因為編寫那麼簡單的Makefile檔案還要如此繁瑣和興師動眾,那未免小題大做了。因此,我們有必要進一步瞭解如何製作Makefile檔案。在製作Makefile檔案的過程中,編寫configure.in檔案是關鍵,因此這一部分將重點介紹configure.in檔案的編寫的相關問題。對於Makefile.am文件的編寫在編譯多檔案和多目錄中要用到,所以下一篇將會介紹。在開啟生成的Makefile檔案,才發現能夠編譯的目標(target)有很多,因此有必要介紹一下其中比較重要而且常用的目標(target)的含義,也就是說,如何使用這個Makefile檔案。1〉make 或 make all開始執行編譯過程,產生我們設定的目標。這時會開始編譯必要的原始碼檔案,然後進行連結,並且最終生成可執行檔案或我們想要生成庫檔案。 具體命令列如下:[root@localhost testmk]#make或[root@localhost testmk]#make all2〉make dist 將程式的原始碼和相關文件打包成一個壓縮檔案,以用來備份原始碼檔案。命令完成後會在目錄下會產生一個以 PACKAGE-VERSION.tar.gz 為名稱的打包檔案。PACKAGE 和 VERSION 這兩個變數是在configure.in檔案中定義的。在我們的例子中定義如下: AM_INIT_AUTOMAKE(hello,1.0) 因此會在目錄中生成一個名為hello-1.0.tar.gz的檔案。具體命令列如下:[root@localhost testmk]#make dist3〉make install 將正確編譯生成的可執行檔案或庫檔案安裝到系統中,通常是/usr/local/bin這個目錄。如果沒有需要安裝的可執行檔案或庫檔案,將會自動執行make命令進行編譯,然後再進行安裝操作。具體命令列如下:[root@localhost testmk]#make install4〉make clean 清除之前所編譯的可執行檔案以及目標檔案(Object Files, *.o)。 具體命令列如下:[root@localhost testmk]#make clean5〉make distclean 清除之前所編譯的可執行檔案、目標檔案(Object Files, *.o)以及由執行./configure 所產生的 Makefile檔案。 具體命令列如下:[root@localhost testmk]#make distclean在弄清Makefile檔案如何使用之後,我們來進一步瞭解生成Makefile檔案的有關問題。先看一下原始檔的結構和內容:/hello-1.0/hello-1.0/pubfun.h/hello-1.0/pubfun.c/hello-1.0/hello.c-------------------------------------------------/*filename:pubfun.h */#include void *printA(void *pdata);-------------------------------------------------/*filename:pubfun.c */#include #include #include void *printA(void *pdata){printf("%f
",sin(2));printf("Hello,World -->%d
",getpid());} -------------------------------------------------/*filename:hello.c */#include #include #include "pubfun.h"int main(int argc,char **argv){int ret;pthread_t ptid;int index;// create a threadret = pthread_create(&ptid,NULL,printA,(void *)&index);if(ret)return -1;printA(NULL);return 0;} ---------------------------------------------------對於我們的原始檔中用到了數學庫和執行緒庫,還有我們自己寫的標頭檔案,我們修改configure.in 檔案如下:01:dnl Process this file with autoconf to produce a configure script.02:AC_INIT(hello.c)03:04:dnl Add the file by leaf05:AM_INIT_AUTOMAKE(hello,1.0)06:07:dnl 檢查C編譯器.如果在環境中沒有設定CC,就查詢gcc,如果沒有找到,就使用cc.08:AC_PROG_CC09:10: dnl 為C編譯器提供的除錯和最佳化選項.11: CFLAGS=" -O2"12:13: dnl 為C前處理器和編譯器提供標頭檔案搜尋目錄選項('-Idir')以及其他各種選項.14: CPPFLAGS=" -I."15:16: dnl 自定義輸出的檢查資訊17:AC_MSG_CHECKING([for architecture type])18:19:dnl 輸出檢查結果20: AC_MSG_RESULT([ok])21:22: dnl 傳遞給聯結器的'-l'和'-L'選項.23: LIBS=" -L."24:25:dnl Checks for libraries,Might abort.26:AC_CHECK_LIB(m,sin,[LIBS="$LIBS -lm"],exit 1)27: AC_CHECK_LIB(pthread,pthread_create,[LIBS="$LIBS -pthread"],exit 1)28: dnl AC_CHECK_LIB(socket, connect)29:30:dnl Checks for header files.(檢查標頭檔案是否存在)31:AC_CHECK_HEADERS(sys/socket.h)32:33:dnl Checks for typedefs, structures, and compiler characteristics.34:35:dnl Checks for library functions.36:37:AC_OUTPUT(Makefile) 這個configure.in檔案中使用了幾個常用的宏,還有一些如AC_ARG_ENABLE宏、AC_MSG_ERROR 宏、AC_MSG_RESULT宏、AM_PATH_GTK宏等有用的宏,你可以在附帶的附件檔案裡查詢,以便使用。這裡我要重點提一下第26到28行,對於程式中需要用到一些特定的庫,需要在編譯時進行指定,否則會出現連結錯誤。例如第26行就對數學庫進行了檢查,如果沒有,將退出Makefile檔案的生成,因為找不到數學庫生成也編譯不過去;同理第27行對執行緒庫進行了檢查,第28行對socket庫進行了檢查(被註釋掉的原因是引用的例子中沒用到此庫)。這裡面用到了AC_CHECK_LIB宏。具體用法如下:AC_CHECK_LIB(庫名稱,需要庫中的函式,[如果找到,[如果沒找到]])在這個宏中的[庫名稱]實在編譯時 -l 選項後面的名稱,如數學庫 -lm 就用 m 就行了。在例子中,如果找到了庫,就在編譯選項中新增 -lm 選項。還是如上一篇中所述的那樣,執行aclocal和autoconf命令,然後再建立並編輯Makefile.am檔案內容如下:AUTOMAKE_OPTIONS=foreignbin_PROGRAMS=hellohello_SOURCES=hello.c pubfun.c pubfun.h Makefile.am檔案和上一篇中相比就增加了原始碼的數量,其他都沒有改變。 然後再執行automake --add-missing即可。資訊如下:[root@leaf hello-1.0]# ./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... gcc3checking for sin in -lm... yeschecking for pthread_create in -lpthread... yesconfigure: creating ./config.statusconfig.status: creating Makefileconfig.status: executing depfiles commands[root@leaf hello-1.0]# 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. -I. -O2 -c `test -f 'hello.c' || echo './'`hello.csource='pubfun.c' object='pubfun.o' libtool=no depfile='.deps/pubfun.Po' tmpdepfile='.deps/pubfun.TPo' depmode=gcc3 /bin/sh ./depcomp gcc -DPACKAGE_NAME="" -DPACKAGE_TARNAME="" -DPACKAGE_VERSION="" -DPACKAGE_STRING=""-DPACKAGE_BUGREPORT="" -DPACKAGE="hello" -DVERSION="1.0" -I.-I. -I. -O2 -c `test -f 'pubfun.c' || echo './'`pubfun.cgcc -O2 -o hello hello.o pubfun.o -L. -lm -pthread 備註: 1.以上內容均在RedHat Linux 9.0環境下測試透過。2.詳細的選項可參考由王立翻譯的文件。3.其它國內外網站資料4.RedHat 9.0下帶的程式檔案及版本autoconf-2.57-3.noarch.rpmautomake-1.6.3-5.noarch.rpmgcc-3.2.2-5.i386.rpm5.附件原始檔用如下命令開啟即可:tar xvzf hello-1.0.tar.gz
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-944615/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux 環境下 Makefile 檔案製作淺談(一)(轉)Linux
- 淺談 Linux 下 Makefile 編寫Linux
- linux環境下使用XFS檔案系統(轉)Linux
- 淺談Linux的檔案系統(轉)Linux
- 淺談基於Linux的Intranet環境建造(轉)Linux
- Linux環境下sqlldr一個csv檔案LinuxSQL
- 淺談AIX環境下的Java效能調優AIJava
- Linux /proc 目錄下檔案粗談(轉)Linux
- linux環境下的undelete(轉)Linuxdelete
- Linux/Unix下pid檔案作用淺析(轉)Linux
- 輕鬆製作PDF檔案(轉)
- alpine 製作 PHP 環境映象PHP
- linux下使用vscode和makefile搭建C++開發環境LinuxVSCodeC++開發環境
- 淺談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檔案案例
- 淺談機房接地線的製作方法
- 新手入門:淺談Linux的檔案系統Linux
- linux下主要檔案(轉)Linux
- 淺談Linux下的媒體播放器(轉)Linux播放器
- Linux下DISPLAY環境變數之作用---轉Linux變數
- 在Linux環境下執行DOS命令(轉)Linux
- Linux平臺Makefile檔案的編寫Linux
- Oracle 11g Dataguard環境下資料檔案、日誌檔案管理(下)Oracle