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
16 lines
293 B
Makefile
16 lines
293 B
Makefile
# Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/net
|
|
|
|
KMOD= if_tap
|
|
SRCS= if_tap.c opt_compat.h opt_inet.h vnode_if.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_compat.h:
|
|
echo "#define COMPAT_FREEBSD6 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|