(1)
/work
下新建資料夾auto。
(2)將實驗七
「hello.c
」複製到該目錄下。
(3)使用autoscan生成configure.scan。
有改動的的地方是第
5,6,7,20行。
(5)使用aclocal生成aclocal.m4。
(6)使用autoconf
生成configure。
(7)使用autoheader
生成config.h.in。
(8)編輯m
akefile.am。
(9)使用automake --add-missing
生成makefile.in。
(10)
使用./
configure
生成makefile。
(11)使用make生成hello可執行檔案,並在當前目錄下執行hello檢視結果。
(12)使用
sudo
make install將hello安裝到系統目錄下,並執行,檢視結果。
(密碼:1)
(13)使用make dist生成hello壓縮包。
(14)解壓hello壓縮包。
(15)進入解壓目錄。
(16)在該目錄下安裝hello軟體。
0 給主人留下些什麼吧!~~
autotools使用流程
1 autoscan root localhost automake autoscan 它會在給定目錄及其子目錄樹中檢查原始檔,若沒有給出目錄,就在當前目錄及其子目 錄樹中進行檢查。它會搜尋原始檔以尋找一般的移植性問題並建立乙個檔案 configure.scan 該檔案就是接下來autoconf要用...
AutoTools工具的使用
最近一直在看linux下autotools工具的使用方法,查閱了一些資料,感覺入門級別的文章網上寫的很多,但寫的清楚明白的應該是下面這篇。a brief introduction to autoconf 而完整詳細,寫的特別棒的是這本書 autoconf,automake and libtool 各...
autotools工具使用記錄
參考 安裝順序 m4 autoconf automake 參考的博文說這個順序很重要,剛開始很納悶,後來在安裝的過程中,發現之間是有依賴關係的 安裝方法 configure make make install 使用方法 autotool工具使用到的工具有 aclocal autoscan autoc...