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