Merge branch 'mesa_7_6_branch' into mesa_7_7_branch
[mesa.git] / src / gallium / state_trackers / xorg / xvmc / tests / Makefile
1 TOP = ../../../../../..
2 include $(TOP)/configs/current
3
4 LIBS = -lXvMCW -lXvMC -lXv -lX11
5
6 #############################################
7
8 .PHONY: default clean
9
10 default: test_context test_surface test_blocks test_rendering xvmc_bench
11
12 test_context: test_context.o testlib.o
13 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
14
15 test_surface: test_surface.o testlib.o
16 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
17
18 test_blocks: test_blocks.o testlib.o
19 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
20
21 test_rendering: test_rendering.o testlib.o
22 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
23
24 xvmc_bench: xvmc_bench.o testlib.o
25 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
26
27 clean:
28 $(RM) -rf *.o test_context test_surface test_blocks test_rendering xvmc_bench