NetBSD/sys/compat/common/Makefile
kleink a255f23ee3 In XPG4.2, the ss_size member of type stack_t (struct sigaltstack) is specified
to be of type size_t; since this imposes an interface change on the Alpha
(sizeof(int) != sizeof(size_t)), allocate a new system call number and make
the previous version a compatibility system call.
1997-11-25 19:32:15 +00:00

22 lines
523 B
Makefile

# $NetBSD: Makefile,v 1.20 1997/11/25 19:32:15 kleink Exp $
LIB= compat
NOPIC=
CPPFLAGS= ${COMPATCPPFLAGS}
SRCS= compat_exec.c compat_util.c kern_exit_43.c kern_info_09.c \
kern_info_43.c kern_resource_43.c kern_sig_13.c kern_sig_43.c \
kern_xxx_12.c tty_43.c uipc_syscalls_43.c vfs_syscalls_12.c \
vfs_syscalls_43.c vm_12.c vm_43.c
# really, all machines where sizeof(int) != sizeof(long)
.if (${MACHINE_ARCH} != "alpha")
SRCS+= kern_ipc_10.c
.endif
# only needed during build
libinstall::
.include <bsd.lib.mk>