mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
7a11384177
The pthread API is considered a standard feature of libc so better to simply merge it with the libc. Pthreads are in fact already a part of the libc in the form of weak symbols. This merger is also a prerequisite for better integrating pthreads with the libc I/O task. Fix #3054
18 lines
339 B
Makefile
18 lines
339 B
Makefile
SHARED_LIB = yes
|
|
LIBS = libc egl i965
|
|
|
|
include $(REP_DIR)/lib/mk/mesa-common.inc
|
|
|
|
SRC_C = platform_i965.c
|
|
SRC_CC = drm_init.cc
|
|
|
|
CC_OPT += -DHAVE_GENODE_PLATFORM
|
|
|
|
INC_DIR += $(MESA_PORT_DIR)/src/egl/main \
|
|
$(MESA_PORT_DIR)/src/egl/drivers/dri2
|
|
|
|
vpath %.c $(LIB_DIR)/i965
|
|
vpath %.cc $(LIB_DIR)/i965
|
|
|
|
CC_CXX_WARN_STRICT =
|