diff options
author | Chia-I Wu <[email protected]> | 2009-11-06 15:17:15 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-11-06 14:19:23 -0700 |
commit | 37dca7955a55c0d1422dffa8a65d5b4ebe143d47 (patch) | |
tree | 1c28528bf03a95ef2e19b31c4ff59504a54a748d /src/mesa/es/Makefile | |
parent | f1c7874cd95e19929030038a78d889ac095a122a (diff) |
mesa/es: Improve support for parallel execution of make.
Running make with -j for the first time might fail because glapi headers
haven't been generated. This commit should make it more reliable.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/mesa/es/Makefile')
-rw-r--r-- | src/mesa/es/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/mesa/es/Makefile b/src/mesa/es/Makefile index 48b11a6ad23..8cf2eaccabe 100644 --- a/src/mesa/es/Makefile +++ b/src/mesa/es/Makefile @@ -110,11 +110,17 @@ clean: # nothing to install install: -subdirs: - make -C glapi - make -C $(MESA) asm_subdirs +glapi/glapi-stamp: + $(MAKE) -C glapi -depend: $(ES1_ALL_SOURCES) $(ES2_ALL_SOURCES) +subdirs: glapi/glapi-stamp + $(MAKE) -C $(MESA) asm_subdirs + +# remove generated sources because "depend" is checked even when "make clean" +DEPEND_SOURCES := $(filter-out $(GENERATED_SOURCES), $(ES1_ALL_SOURCES) $(ES2_ALL_SOURCES)) +DEPEND_SOURCES := $(filter-out glapi/%, $(DEPEND_SOURCES)) + +depend: glapi/glapi-stamp $(DEPEND_SOURCES) @echo "running $(MKDEP)" @touch depend @# MESA is "..", but luckily, directories are longer than 2 characters |