aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/dtrace/dtmalloc
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>2008-05-17 02:31:19 +0000
committerJohn Birrell <jb@FreeBSD.org>2008-05-17 02:31:19 +0000
commitb8915e90a27946bcfdbe54971a748ff966bbbf14 (patch)
tree3e19aa993813cfe11da03f40427e71c4402b164c /sys/modules/dtrace/dtmalloc
parent385db7fe8f842c4b9b0810b9a4ff5143de4c7049 (diff)
Notes
Diffstat (limited to 'sys/modules/dtrace/dtmalloc')
-rw-r--r--sys/modules/dtrace/dtmalloc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/dtrace/dtmalloc/Makefile b/sys/modules/dtrace/dtmalloc/Makefile
new file mode 100644
index 000000000000..efb260763fa2
--- /dev/null
+++ b/sys/modules/dtrace/dtmalloc/Makefile
@@ -0,0 +1,13 @@
+# $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>