mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-05 14:52:02 +00:00
Modified directory building rules so that using the cd program/alias is
not necessary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
07e89e43df
commit
5af06f62ea
@ -395,7 +395,7 @@ RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs))
|
|||||||
ifdef DIRS
|
ifdef DIRS
|
||||||
all install clean test bytecode ::
|
all install clean test bytecode ::
|
||||||
$(VERB) for dir in ${DIRS}; do \
|
$(VERB) for dir in ${DIRS}; do \
|
||||||
(cd $$dir; $(MAKE) $@) || exit 1; \
|
($(MAKE) -C $$dir $@) || exit 1; \
|
||||||
done
|
done
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -408,7 +408,7 @@ test :: $(addsuffix /.maketest , $(PARALLEL_DIRS))
|
|||||||
bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
|
bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
|
||||||
|
|
||||||
%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode:
|
%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode:
|
||||||
$(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
|
$(VERB) $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Handle directories that may or may not exist
|
# Handle directories that may or may not exist
|
||||||
@ -417,7 +417,7 @@ all install clean test bytecode ::
|
|||||||
$(VERB) for dir in ${OPTIONAL_DIRS}; do \
|
$(VERB) for dir in ${OPTIONAL_DIRS}; do \
|
||||||
if [ -d $$dir ]; \
|
if [ -d $$dir ]; \
|
||||||
then\
|
then\
|
||||||
(cd $$dir; $(MAKE) $@) || exit 1; \
|
($(MAKE) -C$$dir $@) || exit 1; \
|
||||||
fi \
|
fi \
|
||||||
done
|
done
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user