bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: new feature idea: ingesting processed rulesets


From: Dmitry Goncharov
Subject: Re: new feature idea: ingesting processed rulesets
Date: Sat, 27 May 2023 11:54:28 -0400

On Tue, May 23, 2023 at 9:07 AM Zoltán Turányi
<zoltan.turanyi@ericsson.com> wrote:

> If we invoke make on the top makefile, it will compile the two lib{1,2}.o 
> object files serially.

That's because your rule is
subs:
                cd sub1
                make
              cd ../sub2
              make

Do something like

subs: sub1 sub2
sub1:; $(MAKE) -C sub1
sub2:; $(MAKE) -C sub2

regards, Dmitry



reply via email to

[Prev in Thread] Current Thread [Next in Thread]