We are supporting two modes of builds (32 & 64 bit). For that we are having two targets:
For 32 bit we have make32
For 64 bit we have make64
Whenever user try to run make
command with make32
, It will run 32bit
build and same way for with make64
it will run 64bit
build. We have another target called makeboth
which runs both 32 & 64 bit builds sequentially.
makeboth:
$(MAKE) make32
$(MAKE) make64
Above make snippet is in top level GNUmakefile, where we are running several makefiles inside its child directories. I want to run both 32 & 64 bit builds in parallel when user passes target makeboth
.Is it possible to do that ? Can anyone one please help here.