diff options
author | Younes Manton <younes.m@gmail.com> | 2008-07-26 16:51:09 -0400 |
---|---|---|
committer | Younes Manton <younes.m@gmail.com> | 2008-07-26 16:55:46 -0400 |
commit | a17e6c046cd990f2ed4d0dfe9ed0a59bccd9aade (patch) | |
tree | d58f27532f5d9f6cce89b8c72b14f85ecedd211a /src/gallium/winsys/g3dvl/nouveau | |
parent | 9e445d3e6374c2a9b163f1262ea5a1047e596cae (diff) |
g3dvl: Recursively build dependencies.
Run `make` in src/libXvMC and everything should be built for Nouveau.
Run `make DRIVER=softpipe` in src/libXvMC for SoftPipe.
Diffstat (limited to 'src/gallium/winsys/g3dvl/nouveau')
-rw-r--r-- | src/gallium/winsys/g3dvl/nouveau/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/winsys/g3dvl/nouveau/Makefile b/src/gallium/winsys/g3dvl/nouveau/Makefile index 644ac083e6..2861bd7db4 100644 --- a/src/gallium/winsys/g3dvl/nouveau/Makefile +++ b/src/gallium/winsys/g3dvl/nouveau/Makefile @@ -39,8 +39,10 @@ LIBS += -ldriclient -ldrm -lnv10 -lnv30 -lnv40 -lnv50 -ldraw -ltgsi -ltranslate all: ${TARGET} ${TARGET}: ${OBJECTS} + cd ${DRIDIR}/src; ${MAKE} $(CC) ${LDFLAGS} -shared -o $@ $^ ${LIBS} clean: + cd ${DRIDIR}/src; ${MAKE} clean rm -rf ${OBJECTS} ${TARGET} |