summaryrefslogtreecommitdiff
path: root/src/libXvMC/tests/Makefile
diff options
context:
space:
mode:
authorYounes Manton <younes.m@gmail.com>2008-09-17 22:00:37 -0400
committerYounes Manton <younes.m@gmail.com>2008-09-17 22:00:37 -0400
commit6fca18696d0e6a243f6fbb5a30de45100a8e5fa0 (patch)
tree213d3490590fedb2279ac8536b767c20ea2a4e2c /src/libXvMC/tests/Makefile
parent3122f2bebe8d76568916b8cddff542f52466055e (diff)
g3dvl: Update XvMC unit tests.
Diffstat (limited to 'src/libXvMC/tests/Makefile')
-rw-r--r--src/libXvMC/tests/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libXvMC/tests/Makefile b/src/libXvMC/tests/Makefile
index 2cbc97e88b..de095161d2 100644
--- a/src/libXvMC/tests/Makefile
+++ b/src/libXvMC/tests/Makefile
@@ -1,4 +1,4 @@
-CFLAGS += -g -Wall -Werror
+CFLAGS += -g -Wall
LDFLAGS +=
LIBS += -lXvMCW -lXvMC -lXv
@@ -6,7 +6,7 @@ LIBS += -lXvMCW -lXvMC -lXv
.PHONY = all clean
-all: test_context test_surface test_blocks test_rendering
+all: test_context test_surface test_blocks test_rendering xvmc_bench
test_context: test_context.o testlib.o
$(CC) ${LDFLAGS} -o $@ $^ ${LIBS}
@@ -20,6 +20,8 @@ test_blocks: test_blocks.o testlib.o
test_rendering: test_rendering.o testlib.o
$(CC) ${LDFLAGS} -o $@ $^ ${LIBS}
-clean:
- rm -rf *.o test_context test_surface test_blocks test_rendering
+xvmc_bench: xvmc_bench.o testlib.o
+ $(CC) ${LDFLAGS} -o $@ $^ ${LIBS}
+clean:
+ rm -rf *.o test_context test_surface test_blocks test_rendering xvmc_bench