mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 11:58:10 +02:00
don't build x86, x86-64 dirs if not needed
This commit is contained in:
parent
55d4f32fc2
commit
26479fa3b3
1 changed files with 7 additions and 2 deletions
|
|
@ -153,8 +153,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