9900a2bb5e
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
15 lines
246 B
Makefile
15 lines
246 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/gpio/
|
|
|
|
KMOD= gpiokeys
|
|
SRCS= gpiokeys.c gpiokeys_codes.c
|
|
SRCS+= bus_if.h device_if.h gpio_if.h ofw_bus_if.h
|
|
SRCS+= opt_platform.h opt_kbd.h
|
|
|
|
CFLAGS+= -I. -I${SRCTOP}/sys/dev/gpio/
|
|
|
|
.include <bsd.kmod.mk>
|