Merge remote branch 'upstream/gallium-0.2' into nouveau-gallium-0.2
[mesa.git] / src / gallium / state_trackers / g3dvl / Makefile
1 TARGET = libg3dvl.a
2 OBJECTS = vl_display.o vl_screen.o vl_context.o vl_surface.o vl_shader_build.o vl_util.o vl_basic_csc.o \
3 vl_r16snorm_mc.o vl_r16snorm_mc_buf.o
4 GALLIUMDIR = ../..
5
6 CFLAGS += -g -Wall -fPIC -I${GALLIUMDIR}/include -I${GALLIUMDIR}/auxiliary -I${GALLIUMDIR}/winsys/g3dvl
7
8 #############################################
9
10 .PHONY = all clean
11
12 all: ${TARGET}
13
14 ${TARGET}: ${OBJECTS}
15 ar rcs $@ $^
16
17 clean:
18 rm -rf ${OBJECTS} ${TARGET}