diff options
author | Christian König <[email protected]> | 2012-02-15 17:30:58 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2012-02-25 12:14:26 +0100 |
commit | dcf8ee7d6ac89bb2a9d608618a51604a3c78fe96 (patch) | |
tree | 112550308ba022d22f09c08b56d0442a6aaf567e /src/gallium/targets | |
parent | 1448e829e86981e6144410ba6a3d0f16357fb2b3 (diff) |
st/xvmc: move xvmc state tracker out of xorg subdir
The xvmc state tracker is completely seperate and
doesn't shares code or anything else with the
xorg state tracker.
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/Makefile.xvmc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/Makefile.xvmc b/src/gallium/targets/Makefile.xvmc index 8c7b7f4de5b..a46183e8de6 100644 --- a/src/gallium/targets/Makefile.xvmc +++ b/src/gallium/targets/Makefile.xvmc @@ -12,7 +12,7 @@ INCLUDES = -I$(TOP)/src/gallium/include \ $(DRIVER_INCLUDES) DEFINES = -DGALLIUM_TRACE $(DRIVER_DEFINES) LIBS = $(EXTRA_LIB_PATH) $(DRIVER_LIBS) -lXv -lX11 -lm -STATE_TRACKER_LIB = $(TOP)/src/gallium/state_trackers/xorg/xvmc/libxvmctracker.a +STATE_TRACKER_LIB = $(TOP)/src/gallium/state_trackers/xvmc/libxvmctracker.a ifeq ($(MESA_LLVM),1) LDFLAGS += $(LLVM_LDFLAGS) @@ -29,7 +29,7 @@ endif # XXX: Hack, XvMC public funcs aren't exported if we link to libxvmctracker.a :( OBJECTS = $(C_SOURCES:.c=.o) \ $(ASM_SOURCES:.S=.o) \ - $(TOP)/src/gallium/state_trackers/xorg/xvmc/*.o + $(TOP)/src/gallium/state_trackers/xvmc/*.o ##### RULES ##### |