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
26 lines
572 B
Makefile
26 lines
572 B
Makefile
# $NetBSD: Makefile,v 1.6 2015/08/16 17:48:24 macallan Exp $
|
|
|
|
DRIVER= xf86-video-sunffb
|
|
DRIVER_NAME= sunffb_drv
|
|
|
|
SRCS= ffb_accel.c ffb_dac.c ffb_driver.c ffb_wid.c ffb_attr.c \
|
|
ffb_ddc.c ffb_cursor.c ffb_dga.c ffb_exa.c \
|
|
ffb_accel_common.c \
|
|
VISmoveImage.s ffb_asm.s
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
AFLAGS+= -x assembler-with-cpp -Wa,-Av9a
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "sparc"
|
|
AFLAGS+= -x assembler-with-cpp -Wa,-Av8plusa
|
|
COPTS= -mv8plus
|
|
.endif
|
|
|
|
CPPFLAGS+= ${X11FLAGS.DRI} -DUSE_VIS
|
|
CPPFLAGS+= -DHAVE_XAA_H
|
|
|
|
MAN= sunffb.4
|
|
|
|
.include "../Makefile.xf86-driver"
|