diff options
author | Ben Skeggs <skeggsb@gmail.com> | 2008-10-27 15:40:40 +1100 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2008-10-27 15:40:40 +1100 |
commit | ee35de2dfb12415416817d417f59e676b34ea81b (patch) | |
tree | 14fc6e43eb0be509fc53694f8289a3675fcbbf75 /src/libXvMC/tests/Makefile | |
parent | 70a06e03d45f3d2e1cd1d430ba83c4b22471373c (diff) | |
parent | 3354e668f0d4eb7ad1d92607031c1fc2e785e8d1 (diff) |
Merge remote branch 'nouveau/gallium-0.1' into gallium-0.2
Diffstat (limited to 'src/libXvMC/tests/Makefile')
-rw-r--r-- | src/libXvMC/tests/Makefile | 10 |
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 |