freebsd-dev/sys/modules/linuxkpi_hdmi/Makefile
Emmanuel Vadot f1d7ae31d4 linuxkpi: Add hdmi helpers
This is a direct port of the Linux code as the licence allows it, so
style(9) isn't respected to allow applying directly the upstream commits.
Do not add it to linuxkpi directly but add a new linuxkpi_hdmi module
that drm modules will require later, no need to bloat linuxkpi more.

Sponsored by:	Beckhoff Automation GmbH & Co. KG
Differential Revision:	https://reviews.freebsd.org/D39122
2023-03-28 09:11:06 +02:00

14 lines
228 B
Makefile

.PATH: ${SRCTOP}/sys/compat/linuxkpi/common/src
KMOD= linuxkpi_hdmi
SRCS= linux_hdmi.c \
SRCS+= ${LINUXKPI_GENSRCS}
CFLAGS+= ${LINUXKPI_INCLUDES}
CFLAGS.linux_hdmi.c= -Wno-cast-qual
EXPORT_SYMS= YES
.include <bsd.kmod.mk>