summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian König <[email protected]>2012-02-21 14:09:42 +0100
committerChristian König <[email protected]>2012-02-29 00:02:30 +0100
commitfce888a7066bfaaddd7272393e8bc54ce6a5cb67 (patch)
treede0bbda3659c1a4c5ade0b32fb3ea312aa78f752
parentacbc3c96781f15f8077a0104578037758cae82a1 (diff)
st/vdpau: fix use of *.o in Makefile.vdpau
Signed-off-by: Christian König <[email protected]>
-rw-r--r--src/gallium/targets/Makefile.vdpau4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/Makefile.vdpau b/src/gallium/targets/Makefile.vdpau
index c59cd0297b2..72061645c3c 100644
--- a/src/gallium/targets/Makefile.vdpau
+++ b/src/gallium/targets/Makefile.vdpau
@@ -27,9 +27,9 @@ else
endif
# XXX: Hack, VDPAU public funcs aren't exported if we link to libvdpautracker.a :(
+C_SOURCES += $(TOP)/src/gallium/state_trackers/vdpau/device.c
OBJECTS = $(C_SOURCES:.c=.o) \
- $(ASM_SOURCES:.S=.o) \
- $(TOP)/src/gallium/state_trackers/vdpau/*.o
+ $(ASM_SOURCES:.S=.o)
##### RULES #####