8bc7851803
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.
12 lines
297 B
Makefile
12 lines
297 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../compat/cloudabi64
|
|
.PATH: ${.CURDIR}/../../${MACHINE_CPUARCH}/cloudabi64
|
|
|
|
KMOD= cloudabi64
|
|
SRCS= cloudabi64_fd.c cloudabi64_poll.c cloudabi64_sock.c \
|
|
cloudabi64_syscalls.c cloudabi64_sysent.c cloudabi64_sysvec.c \
|
|
cloudabi64_thread.c
|
|
|
|
.include <bsd.kmod.mk>
|