freebsd-dev/sys/modules/backlight/Makefile
Emmanuel Vadot 675aae732d Add backlight subsystem
This is a simple subsystem that allow drivers to register as a backlight.
Each backlight creates a device node under /dev/backlight/backlightX and
an alias based on the name provided.

Relnotes:	yes
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D26250
2020-10-02 18:18:01 +00:00

14 lines
192 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/sys/dev/backlight
KMOD= backlight
SRCS= backlight.c
SRCS+= bus_if.h \
device_if.h \
opt_platform.h \
backlight_if.h \
backlight_if.c
.include <bsd.kmod.mk>