mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
How many commits does it take to get a simple module makefile working? Apparently at least three. Pointy hat to: ian
17 lines
226 B
Makefile
17 lines
226 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/arm/freescale/imx
|
|
|
|
KMOD= imx_i2c
|
|
SRCS= imx_i2c.c
|
|
|
|
SRCS+= \
|
|
bus_if.h \
|
|
device_if.h \
|
|
fdt_pinctrl_if.h \
|
|
gpio_if.h \
|
|
iicbus_if.h \
|
|
ofw_bus_if.h \
|
|
opt_platform.h \
|
|
|
|
.include <bsd.kmod.mk>
|