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 ./
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
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