summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/g3dvl/Makefile
blob: c6a22cad4e2f80e01132df0d648f5547075c5768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
TARGET		= libg3dvl.a
OBJECTS		= vl_context.o vl_data.o vl_surface.o vl_shader_build.o vl_util.o
GALLIUMDIR	= ../..

CFLAGS		+= -g -Wall -fPIC -Werror -I${GALLIUMDIR}/include -I${GALLIUMDIR}/auxiliary -I${GALLIUMDIR}/winsys/g3dvl

#############################################

.PHONY	= all clean

all: ${TARGET}

${TARGET}: ${OBJECTS}
	ar rcs $@ $^

clean:
	rm -rf ${OBJECTS} ${TARGET}