freebsd-skq/sys/modules/lindebugfs/Makefile
Johannes Lundberg 03f1cf9f32 LinuxKPI: Finalize move of lindebugfs from ports to base.
The source file was moved to base earlier and also improved upon,
but never compiled in. This patch will:
- Make a module in sys/modules
- Make lindebugfs depend on linuxkpi (for seq_file)
- Check if read/write functions are set before calling, DRM drivers
  don't always set both of them.

Reviewed by:	hps
Approved by:	imp (mentor), hps
MFC after:	1 week
2019-05-19 15:44:21 +00:00

13 lines
218 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/sys/compat/lindebugfs
KMOD= lindebugfs
SRCS= vnode_if.h \
device_if.h bus_if.h pci_if.h \
lindebugfs.c
CFLAGS+= -I${SRCTOP}/sys/compat/linuxkpi/common/include
.include <bsd.kmod.mk>