Re: How to call a new bash function within a makefile

2005-11-14 Thread OnMyWayHome
Thanks for the post Paul. I may be remembering it incorrectly, but your post does help me. Thanks, Chris Paul D. Smith wrote: %% OnMyWayHome <[EMAIL PROTECTED]> writes: o> I don't have gnu.bash on my newsgroup server, so I'm posting this here. o> Here is an example GNU makefile: o> funct

Re: How to call a new bash function within a makefile

2005-11-13 Thread Paul D. Smith
%% OnMyWayHome <[EMAIL PROTECTED]> writes: o> I don't have gnu.bash on my newsgroup server, so I'm posting this here. o> Here is an example GNU makefile: o> function DoThis() o> { o> echo $0 o> } o> all : o> DoThis "Test" o> I've seen this done before where a bash fu

How to call a new bash function within a makefile

2005-11-12 Thread OnMyWayHome
I don't have gnu.bash on my newsgroup server, so I'm posting this here. Here is an example GNU makefile: function DoThis() { echo $0 } all : DoThis "Test" I've seen this done before where a bash function is defined within a makefile, and can be subsequently called when a target is mat

How to call a new bash function within a makefile

2005-11-12 Thread OnMyWayHome
I don't have gnu.bash on my newsgroup server, so I'm posting this here. Here is an example GNU makefile: function DoThis() { echo $0 } all : DoThis "Test" I've seen this done before where a bash function is defined within a makefile, and can be subsequently called when a target is mat