summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/g3dvl/Makefile
blob: 50e3c843b55c00b87654aba1518afbf05732901c (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

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

.PHONY	= all clean

all: ${TARGET}

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

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