This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
27 lines
663 B
Makefile
27 lines
663 B
Makefile
# $NetBSD: Makefile,v 1.12 2014/03/20 05:32:31 mrg Exp $
|
|
|
|
DRIVER= xf86-video-tdfx
|
|
DRIVER_NAME= tdfx_drv
|
|
|
|
SRCS= tdfx_accel.c tdfx_dga.c tdfx_driver.c tdfx_hwcurs.c
|
|
SRCS+= tdfx_io.c tdfx_priv.c tdfx_sli.c tdfx_video.c
|
|
SRCS+= tdfx_dri.c
|
|
MAN= tdfx.4
|
|
|
|
.if ${MACHINE_ARCH} == "i386" || \
|
|
${MACHINE_ARCH} == "x86_64"
|
|
CPPFLAGS+= -DUSE_INT10
|
|
.endif
|
|
CPPFLAGS+= -DHAVE_XAA_H
|
|
CPPFLAGS+= -DTDFXDRI
|
|
|
|
CPPFLAGS+= -I${DESTDIR}${X11INCDIR}/X11
|
|
CPPFLAGS+= -I${DESTDIR}${X11INCDIR}/X11/dri
|
|
CPPFLAGS+= -I${DESTDIR}${X11INCDIR}/libdrm
|
|
|
|
COPTS.tdfx_driver.c= -Wno-error # XXX deprecated
|
|
|
|
CWARNFLAGS.clang+= -Wno-format -Wno-pointer-sign
|
|
|
|
.include "../Makefile.xf86-driver"
|