From: Dave Airlie Date: Thu, 29 Dec 2005 00:42:25 +0000 (+0000) Subject: add EGL to r300 makefile X-Git-Tag: 062012170305~21543 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=577d23011b57b6bf9cae1ba49e043732c872e5be;p=profile%2Fivi%2Fmesa.git add EGL to r300 makefile --- diff --git a/src/mesa/drivers/dri/r300/Makefile b/src/mesa/drivers/dri/r300/Makefile index 41ffb59..af9d0d4 100644 --- a/src/mesa/drivers/dri/r300/Makefile +++ b/src/mesa/drivers/dri/r300/Makefile @@ -9,6 +9,10 @@ DEFINES += -DCOMPILE_R300 -DGLX_DIRECT_RENDERING -DR200_MERGED=0 MINIGLX_SOURCES = server/radeon_dri.c +ifeq ($(USING_EGL), 1) +EGL_SOURCES = server/radeon_egl.c +endif + COMMON_SOURCES = \ ../../common/driverfuncs.c \ ../common/mm.c \ @@ -40,7 +44,9 @@ DRIVER_SOURCES = \ r300_vertexprog.c \ r300_fragprog.c \ r300_shader.c \ - r300_maos.c + r300_maos.c \ + $(EGL_SOURCES) + # \ # r200_context.c \ # r200_ioctl.c \