mirror of
https://github.com/opnsense/src.git
synced 2026-03-07 07:44:13 -05:00
18 lines
229 B
Makefile
18 lines
229 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/pwm
|
|
KMOD= pwmc
|
|
SRCS= pwmc.c
|
|
|
|
# Generated files...
|
|
SRCS+= \
|
|
bus_if.h \
|
|
device_if.h \
|
|
opt_platform.h \
|
|
pwmbus_if.h \
|
|
|
|
.if !empty(OPT_FDT)
|
|
SRCS+= ofw_bus_if.h
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|