62d8c47315
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.
11 lines
280 B
Makefile
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>
|