Dependencies commands running (THIS IS A BUG) - make 3.81

2017-02-13 Thread ruchi
NUMJOBS := 24 MAKEFLAGS := -j3 -l36 SUBDIRS := a \ b \ c .PHONY $(SUBDIRS) $(SUBDIRS) : $(SOME_INITIAL_WORK) c : a b $(SUBDIRS): @echo "=> Working on '$@' for '$(ARCH)'..." $(NOERR)+cd $(DIR) && time ./

Re: Dependencies commands running (THIS IS A BUG) - make 3.81

2017-02-13 Thread Paul Smith
On Mon, 2017-02-13 at 20:43 -0800, ruchi wrote: > NUMJOBS := 24 > MAKEFLAGS := -j3 -l36 > > SUBDIRS := a  \ >   b  \ >   c > > .PHONY $(SUBDIRS) > $(SUBDIRS) : $(SOME_INITIAL_WORK) > c : a b > $(SUBDIRS): > @echo "=> Working on '$@' for '$(ARCH)'..." >

Re: Dependencies commands running (THIS IS A BUG) - make 3.81

2017-02-13 Thread ruchi
Hi Paul Thanks for looking into it. It would be difficult for me to share the exact Makefile as its quite complex having around 70-80 targets. The thing is each target is itself having various subdirectories and its calling recursive submakes on those as well via the script which we are passing

Re: Dependencies commands running (THIS IS A BUG) - make 3.81

2017-02-13 Thread Ruchi Rautela
Hi Paul Thanks for looking into it. It would be difficult for me to share the exact Makefile as its quite complex having around 70-80 targets. The thing is each target is itself having various subdirectories and its calling recursive submakes on those as well via the script which we are passi