]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - sys/modules/linux_common/Makefile
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / sys / modules / linux_common / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../compat/linux
4
5 KMOD=   linux_common
6 SRCS=   linux_common.c linux_mib.c linux_util.c linux_emul.c \
7         linux.c opt_compat.h device_if.h vnode_if.h bus_if.h
8
9 EXPORT_SYMS=
10 EXPORT_SYMS+=   linux_emul_path
11 EXPORT_SYMS+=   linux_ioctl_register_handler
12 EXPORT_SYMS+=   linux_ioctl_unregister_handler
13 EXPORT_SYMS+=   linux_get_osname
14 EXPORT_SYMS+=   linux_get_osrelease
15
16 .if !defined(KERNBUILDDIR)
17 .if defined(DEBUG)
18 CFLAGS+=-DDEBUG
19 .endif
20 .if defined(KTR)
21 CFLAGS+=-DKTR
22 .endif
23 .endif
24
25 .include <bsd.kmod.mk>