14 lines
280 B
Makefile
14 lines
280 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../cddl/dev/dtmalloc
|
|
|
|
KMOD= dtmalloc
|
|
SRCS= dtmalloc.c
|
|
SRCS+= vnode_if.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris \
|
|
-I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \
|
|
-I${.CURDIR}/../../..
|
|
|
|
.include <bsd.kmod.mk>
|