g3dvl: Remove src/driclient

It's in src/gallium/winsys/g3dvl/dri now.
This commit is contained in:
Younes Manton 2009-11-06 01:09:24 -05:00
parent 8ebc795ec4
commit 181d034ad5

View file

@ -1,19 +0,0 @@
TARGET = libdriclient.a
OBJECTS = driclient.o XF86dri.o
DRMDIR ?= /usr
CFLAGS += -g -Wall -fPIC -I../include -I${DRMDIR}/include -I${DRMDIR}/include/drm
#############################################
.PHONY = all clean
all: ${TARGET}
${TARGET}: ${OBJECTS}
ar rcs $@ $^
if ! test -d ../lib; then mkdir ../lib; fi
cp ${TARGET} ../lib
clean:
rm -rf ${OBJECTS} ${TARGET} ../lib/${TARGET}