如何使用automake

2021-06-08 10:03:15 字數 888 閱讀 5755

如何使用

automake

makefile.am(作為子目錄的索引的情況):

subdirs = src \

mysub/src

makefile.am

(在**目錄下組織編譯二進位制的情況):

mytest_programs = mybin

mybin_sources = mybin_******.c

mybin_testsuite_cflags = $(otherlib_cflags)

mybin_testsuite_ldadd = $(otherlib_libs)

mytest_programs += my_another_bin

my_another_bin_sources = mybin2.c

my_another_bin_cflags = $(player_cflags) \

$(glib_cflags)

my_another_bin_ldadd = $(player_libs) \

$(glib_libs)

mytestdir = /opt/apathname/tool

automake的使用方法

使用automake生成 makefile 檔案的 1 使用autoscanf 工具生成configure.scan 2 把configure.scan的內容複製到configure.in中,注意新增am init automake 3 使用aclocal命令生成configure.h.in檔案 4...

automake檔案生成Make

b 安裝相關依賴庫 apt get install flex apt get install y byacc c 編譯安裝 configure make make install 注 解除安裝 apt get uninstall 三 編譯安裝 1.autoscan 生成configure.scan ...

Automake的錯誤彙總

一 今天參照gnu hello,終於做出了hello makefile,已經解決的問題 1.configure.in 35 required file config.h.in not found answer 在執行automake add missing之前執行autoheader,生成confi...