f09036d6ec
This is used by the i386, hp300 and mac68k ports. - Added exec_aout_prep_oldomagic, and exec_aout_prep_oldnmagic These are just copies of the respective prep functions from kern_exec.c with text address starting at 0. Maybe a better fix is to pass the starting address as a third argument so we don't duplicate code, but this could be the next pass since the functions are used in many places. These functions are used for BSDI binaries.
22 lines
507 B
Makefile
22 lines
507 B
Makefile
# $NetBSD: Makefile,v 1.8 1996/05/18 15:52:19 christos Exp $
|
|
|
|
LIB= compat
|
|
NOPIC=
|
|
|
|
CPPFLAGS= ${COMPATCPPFLAGS:S@-I.@-I${COMPATREL}.@g}
|
|
|
|
.PATH: ${COMPATREL}${COMPATDIR}
|
|
|
|
SRCS= compat_exec.c compat_util.c kern_exit_43.c kern_info_09.c \
|
|
kern_info_43.c kern_prot_43.c kern_resource_43.c kern_sig_43.c \
|
|
tty_43.c uipc_syscalls_43.c vfs_syscalls_43.c vm_43.c
|
|
|
|
# really, all machines were sizeof(int) != sizeof(long)
|
|
.if (${MACHINE_ARCH} != "alpha")
|
|
SRCS+= kern_ipc_10.c
|
|
.endif
|
|
|
|
install:
|
|
|
|
.include <bsd.lib.mk>
|