mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 13:40:29 +01:00
Makefile cleanups suggested by George Fufutos (bugzilla #3899).
This commit is contained in:
parent
ac7c147aaf
commit
4c4e4bfa4e
1 changed files with 1 additions and 17 deletions
|
|
@ -1,15 +1,12 @@
|
|||
TOP = ../../..
|
||||
include $(TOP)/configs/current
|
||||
|
||||
# Context creation has evolved over the years, such that this
|
||||
# code will not build with DNIO defined. When we finally drop old interface
|
||||
# support in libGL, we need to clean up both glxcmds.c and dri_interface.h.
|
||||
|
||||
DEFINES += -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER
|
||||
|
||||
C_SOURCES = \
|
||||
$(TOP)/src/mesa/glapi/glapi.c \
|
||||
$(TOP)/src/mesa/glapi/glthread.c \
|
||||
$(TOP)/src/mesa/main/dispatch.c \
|
||||
glcontextmodes.c \
|
||||
$(DRM_SOURCE_PATH)/libdrm/xf86drm.c \
|
||||
$(DRM_SOURCE_PATH)/libdrm/xf86drmHash.c \
|
||||
|
|
@ -17,7 +14,6 @@ C_SOURCES = \
|
|||
$(DRM_SOURCE_PATH)/libdrm/xf86drmSL.c \
|
||||
clientattrib.c \
|
||||
compsize.c \
|
||||
dispatch.c \
|
||||
eval.c \
|
||||
glxcmds.c \
|
||||
glxext.c \
|
||||
|
|
@ -54,13 +50,8 @@ OBJECTS = $(C_SOURCES:.c=.o) \
|
|||
INCLUDES = -I. \
|
||||
-I$(TOP)/include \
|
||||
-I$(TOP)/include/GL/internal \
|
||||
-I$(TOP)/src/mesa \
|
||||
-I$(TOP)/src/mesa/main \
|
||||
-I$(TOP)/src/mesa/glapi \
|
||||
-I$(TOP)/src/mesa/math \
|
||||
-I$(TOP)/src/mesa/transform \
|
||||
-I$(TOP)/src/mesa/swrast \
|
||||
-I$(TOP)/src/mesa/swrast_setup \
|
||||
-I$(TOP)/src/mesa/drivers/dri/common \
|
||||
-I$(DRM_SOURCE_PATH)/libdrm \
|
||||
-I$(DRM_SOURCE_PATH)/shared-core \
|
||||
|
|
@ -82,9 +73,6 @@ default: depend $(LIB_DIR)/$(GL_LIB_NAME)
|
|||
glcontextmodes.c:
|
||||
ln -s $(TOP)/src/mesa/drivers/dri/common/glcontextmodes.c .
|
||||
|
||||
dispatch.c:
|
||||
ln -s $(TOP)/src/mesa/main/dispatch.c .
|
||||
|
||||
# Make libGL
|
||||
$(LIB_DIR)/$(GL_LIB_NAME): $(OBJECTS) Makefile
|
||||
$(TOP)/bin/mklib -o $(GL_LIB) -linker '$(CC)' \
|
||||
|
|
@ -92,10 +80,6 @@ $(LIB_DIR)/$(GL_LIB_NAME): $(OBJECTS) Makefile
|
|||
-install $(LIB_DIR) $(GL_LIB_DEPS) $(OBJECTS)
|
||||
|
||||
|
||||
drmtest: xf86drm.o drmtest.o
|
||||
rm -f drmtest && $(CC) -o drmtest xf86drm.o drmtest.o
|
||||
|
||||
|
||||
depend: $(C_SOURCES) $(ASM_SOURCES) Makefile
|
||||
touch depend
|
||||
$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue