Re: Re[2]: How to order make do the parallel job?

2015-12-22 Thread Paul Smith
On Tue, 2015-12-22 at 09:17 +0300, Igor Sobinov wrote: > My OS is RHEL 6.6, make version is 3.81 > > I used CMake to generate makefiles, only the first makefile is > manually created. The command to execute is: > > .PHONY : build_release1 > build_release1: $(RELEASE_TARGET) > +(@cd $(RE

Re: Re[2]: How to order make do the parallel job?

2015-12-22 Thread Yann Droneaud
Le mardi 22 décembre 2015 à 07:35 -0500, Paul Smith a écrit : > On Tue, 2015-12-22 at 09:17 +0300, Igor Sobinov wrote: > >  > > .PHONY : build_release1 > > build_release1: $(RELEASE_TARGET) > > +(@cd $(RELEASE_TARGET); $(MAKE) release -j10) > > Your new error is the syntax above: the "@"

Re: Re[2]: How to order make do the parallel job?

2015-12-22 Thread Paul Smith
On Tue, 2015-12-22 at 14:02 +0100, Yann Droneaud wrote: > I think -C can be used too ? > > @$(MAKE) -C $(RELEASE_TARGET) Sure, if you prefer. It only works with GNU make but that's likely not an issue here. ___ Help-make mailing list Help-make