mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
don't build x86, x86-64 dirs if not needed
This commit is contained in:
parent
6229005f93
commit
882ada0d22
1 changed files with 7 additions and 2 deletions
|
|
@ -154,8 +154,13 @@ depend: $(ALL_SOURCES)
|
|||
|
||||
|
||||
subdirs:
|
||||
@ (cd x86 ; $(MAKE))
|
||||
@ (cd x86-64 ; $(MAKE))
|
||||
@ if [ `echo $(ASM_FLAGS) | grep USE_X86_ASM` ] ; then \
|
||||
(cd x86 ; $(MAKE)) ; \
|
||||
fi
|
||||
@ if [ `echo $(ASM_FLAGS) | grep USE_X86_64_ASM` ] ; then \
|
||||
(cd x86 ; $(MAKE)) ; \
|
||||
(cd x86-64 ; $(MAKE)) ; \
|
||||
fi
|
||||
|
||||
|
||||
install: default gl.pc
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue