freebsd-dev/sys/modules/cloudabi/Makefile
Ed Schouten 8bc7851803 Add Makefiles for CloudABI kernel modules.
Place all of the machine/pointer size independent code in a kernel
module called 'cloudabi'. All of the 64-bit specific code goes in a
separate module called 'cloudabi64'. The latter is only enabled on
amd64, as it is the only architecture supported.
2015-07-22 07:32:49 +00:00

11 lines
280 B
Makefile

# $FreeBSD$
.PATH: ${.CURDIR}/../../compat/cloudabi
KMOD= cloudabi
SRCS= cloudabi_clock.c cloudabi_errno.c cloudabi_fd.c cloudabi_file.c \
cloudabi_futex.c cloudabi_mem.c cloudabi_proc.c cloudabi_random.c \
cloudabi_sock.c cloudabi_thread.c vnode_if.h
.include <bsd.kmod.mk>