diff options
author | Dave Airlie <[email protected]> | 2009-02-15 17:03:47 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2009-02-15 17:03:47 +1000 |
commit | b0e8ac8fd2eeb88b5f9299afb36102113a2435d4 (patch) | |
tree | 8d49e1db38bca63ad1412399839e862ec34d980a /src/mesa/drivers/dri/radeon/Makefile | |
parent | 7d19d2768491f4de3b674106e93c24d29712404f (diff) |
radeon: add cflags to decide whether to link libdrm_radeon or not.
You don't need libdrm_radeon for the legacy driver to build,
only for the experimental mm/cs paths.
Diffstat (limited to 'src/mesa/drivers/dri/radeon/Makefile')
-rw-r--r-- | src/mesa/drivers/dri/radeon/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/radeon/Makefile b/src/mesa/drivers/dri/radeon/Makefile index 0a5775b11c1..f469c6f43a1 100644 --- a/src/mesa/drivers/dri/radeon/Makefile +++ b/src/mesa/drivers/dri/radeon/Makefile @@ -4,6 +4,8 @@ TOP = ../../../../.. include $(TOP)/configs/current +CFLAGS += $(RADEON_CFLAGS) + LIBNAME = radeon_dri.so MINIGLX_SOURCES = server/radeon_dri.c @@ -39,7 +41,7 @@ C_SOURCES = \ DRIVER_DEFINES = -DRADEON_COMMON=0 -DRI_LIB_DEPS += #-ldrm_radeon +DRI_LIB_DEPS += $(RADEON_LDFLAGS) X86_SOURCES = |