custom message type for VM_INFO
[minix3.git] / drivers / fb / Makefile
blob493892fb490e0065731f21a46f5778e1e8c82cf7
1 # Makefile for the framebuffer driver.
2 PROG= fb
4 .include "arch/${MACHINE_ARCH}/Makefile.inc"
6 SRCS+= fb_edid.c fb.c
8 # re-use EDID parsing/validation code from NetBSD.
9 .PATH: ${NETBSDSRCDIR}/sys/dev/videomode
10 SRCS+= edid.c pickmode.c videomode.c vesagtf.c
12 # Put this dir and the EDID headers (dev/videomode/*.h) in the search path.
13 CPPFLAGS+= -I${.CURDIR} -I${NETBSDSRCDIR}/sys
15 DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
16 LDADD+= -lchardriver -lsys
18 MAN=
20 BINDIR?= /usr/sbin
22 .include <minix.service.mk>