aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/hwt
diff options
context:
space:
mode:
authorRuslan Bukin <br@FreeBSD.org>2025-07-03 13:10:45 +0000
committerRuslan Bukin <br@FreeBSD.org>2025-07-03 14:48:34 +0000
commitdf114daef4c48548c3c2b86717612761185ae18f (patch)
tree6b0c62a89a033e3989df84376c185c4c424ebc0f /sys/modules/hwt
parent9d004de910bb7ea4d959dd3726318c4c6bdbd48c (diff)
Diffstat (limited to 'sys/modules/hwt')
-rw-r--r--sys/modules/hwt/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/modules/hwt/Makefile b/sys/modules/hwt/Makefile
new file mode 100644
index 000000000000..6704e22422d1
--- /dev/null
+++ b/sys/modules/hwt/Makefile
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/dev/hwt
+
+KMOD = hwt
+SRCS = \
+ hwt.c \
+ hwt_backend.c \
+ hwt_config.c \
+ hwt_context.c \
+ hwt_contexthash.c \
+ hwt_cpu.c \
+ hwt_hook.c \
+ hwt_ioctl.c \
+ hwt_owner.c \
+ hwt_ownerhash.c \
+ hwt_record.c \
+ hwt_thread.c \
+ hwt_vm.c
+
+.include <bsd.kmod.mk>