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
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2014/08/13 22:48:15 macallan Exp $
|
|
|
|
DRIVER= xf86-video-nv
|
|
DRIVER_NAME= nv_drv
|
|
|
|
SRCS= nv_cursor.c nv_dac.c nv_dga.c nv_driver.c nv_hw.c
|
|
SRCS+= nv_setup.c nv_shadow.c nv_video.c nv_xaa.c riva_cursor.c
|
|
SRCS+= riva_dac.c riva_dga.c riva_driver.c riva_hw.c
|
|
SRCS+= riva_setup.c riva_shadow.c riva_xaa.c g80_cursor.c
|
|
SRCS+= g80_dac.c g80_display.c g80_dma.c g80_driver.c g80_exa.c
|
|
SRCS+= g80_output.c g80_sor.c g80_xaa.c
|
|
MAN= nv.4
|
|
|
|
.if ${MACHINE} == "macppc"
|
|
CPPFLAGS+= -DAVOID_VGAHW
|
|
.endif
|
|
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
# XXX
|
|
# the test uses pci_device_has_kernel_driver() which, for now at least, only
|
|
# makes sense on x86 ( it just checks if the kernel driver handling the
|
|
# device is vga ) - and even there, genfb and the like don't do anything
|
|
# that would prevent this driver from working. Might need to revisit this once
|
|
# the new DRM2 code has nvidia support
|
|
#CPPFLAGS+= -DNV_TEST_FOR_KERNEL_DRIVER
|
|
.endif
|
|
|
|
CPPFLAGS+= -DHAVE_XAA_H
|
|
|
|
.include "../Makefile.xf86-driver"
|