Re: Makefile question...

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Kurt Granroth
日付:  
To: plug-discuss
題目: Re: Makefile question...
On 10/27/09 9:23 AM, wrote:
> Hello virtual inhabitants:
>
> I have a C++ application scattered over several directories.
> Each leaf directory has its own Makefile.
> I want to write a top-level Makefile that traverses the tree and builds the
> application.
> Makefile(s) are not one of my talents, and I cant' remember how to traverse
> the tree and fire up the nested Makefile(s).
>
> Any "make Guru" in the population?


Hmm... I'm tempted to recommend that you move away from Makefiles
entirely into something a little more automated. Still, that's not what
your question was.

---------------------------
DIRS = one two three

all:
    for dir in ${DIRS}; do make -C $$dir $@; done
---------------------------
---------------------------------------------------
PLUG-discuss mailing list - 
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss