Module: Mesa Branch: master Commit: acbc3c96781f15f8077a0104578037758cae82a1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=acbc3c96781f15f8077a0104578037758cae82a1
Author: Christian König <[email protected]> Date: Tue Feb 21 14:08:14 2012 +0100 st/xvmc: fix use of *.o in Makefile.xvmc Signed-off-by: Christian König <[email protected]> --- 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 a46183e..44da660 100644 --- a/src/gallium/targets/Makefile.xvmc +++ b/src/gallium/targets/Makefile.xvmc @@ -27,9 +27,9 @@ else endif # XXX: Hack, XvMC public funcs aren't exported if we link to libxvmctracker.a :( +C_SOURCES += $(wildcard $(TOP)/src/gallium/state_trackers/xvmc/*.c) OBJECTS = $(C_SOURCES:.c=.o) \ - $(ASM_SOURCES:.S=.o) \ - $(TOP)/src/gallium/state_trackers/xvmc/*.o + $(ASM_SOURCES:.S=.o) ##### RULES ##### _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
