1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix parallel recursive make to build directories in order

llvm-svn: 3794
This commit is contained in:
Chris Lattner 2002-09-17 23:35:02 +00:00
parent fa57849866
commit f1c3571159
2 changed files with 8 additions and 12 deletions

View File

@ -179,12 +179,10 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
ifdef DIRS # Only do this if we're using DIRS!
all :: $(addsuffix /.makeall , $(DIRS))
install :: $(addsuffix /.makeinstall, $(DIRS))
clean :: $(addsuffix /.makeclean , $(DIRS))
%/.makeall %/.makeclean %/.makeinstall:
$(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
all install clean::
@for dir in ${DIRS}; do \
(cd $$dir; $(MAKE) $@) || exit 1; \
done
endif
#---------------------------------------------------------

View File

@ -179,12 +179,10 @@ ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
ifdef DIRS # Only do this if we're using DIRS!
all :: $(addsuffix /.makeall , $(DIRS))
install :: $(addsuffix /.makeinstall, $(DIRS))
clean :: $(addsuffix /.makeclean , $(DIRS))
%/.makeall %/.makeclean %/.makeinstall:
$(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
all install clean::
@for dir in ${DIRS}; do \
(cd $$dir; $(MAKE) $@) || exit 1; \
done
endif
#---------------------------------------------------------