mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
22 lines
479 B
PHP
22 lines
479 B
PHP
MESA = Mesa-7.8.1
|
|
MESA_DIR = $(REP_DIR)/contrib/$(MESA)
|
|
MESA_SRC_DIR = $(MESA_DIR)/src/mesa
|
|
|
|
ifeq ($(wildcard $(MESA_DIR)),)
|
|
REQUIRES += prepare_mesa
|
|
endif
|
|
|
|
LIBS += cxx libc libm
|
|
|
|
#
|
|
# Prevent warning about non-existing 'fpu_control.h' included
|
|
# by 'mesa/main/compiler.h' if '__linux__' is defined.
|
|
#
|
|
CC_OPT += -U__linux__
|
|
|
|
INC_DIR += $(MESA_DIR)/src/mesa \
|
|
$(MESA_DIR)/src/gallium/include \
|
|
$(MESA_DIR)/src/gallium/auxiliary
|
|
|
|
#SHARED_LIB = yes
|