g3dvl: Add Nouveau winsys, libdriclient.
[mesa.git] / src / gallium / state_trackers / g3dvl / Makefile
1 TARGET = libg3dvl.a
2 OBJECTS = vl_context.o vl_data.o vl_surface.o vl_shader_build.o vl_util.o
3 GALLIUMDIR = ../..
4
5 CFLAGS += -g -Wall -fPIC -Werror -I${GALLIUMDIR}/include -I${GALLIUMDIR}/auxiliary -I${GALLIUMDIR}/winsys/g3dvl
6
7 #############################################
8
9 .PHONY = all clean
10
11 all: ${TARGET}
12
13 ${TARGET}: ${OBJECTS}
14 ar rcs $@ $^
15
16 clean:
17 rm -rf ${OBJECTS} ${TARGET}
18