7597f4a8fc
. use netbsd sigframe, sigcontext struct . netbsd sigframe *contains* sigcontext; use that directly in kernel sigsend . drop two fields from minix x86 stackframe.h (process context) that were unused, retadr and st use in-sigframe sigcontext Change-Id: Ib59d699596dc3a78163dee59f19730482fdddf11
27 lines
537 B
Makefile
27 lines
537 B
Makefile
# $NetBSD: Makefile,v 1.17 2011/07/17 23:46:49 dyoung Exp $
|
|
|
|
INCSDIR= /usr/include/evbarm
|
|
|
|
INCS= ansi.h asm.h \
|
|
bswap.h \
|
|
cdefs.h cpu.h \
|
|
disklabel.h \
|
|
elf_machdep.h endian.h endian_machdep.h \
|
|
float.h frame.h \
|
|
ieee.h ieeefp.h \
|
|
int_const.h int_fmtio.h int_limits.h int_mwgwtypes.h int_types.h \
|
|
\
|
|
limits.h lock.h \
|
|
math.h mcontext.h mutex.h \
|
|
param.h proc.h profile.h ptrace.h \
|
|
rwlock.h \
|
|
setjmp.h signal.h \
|
|
types.h \
|
|
vmparam.h \
|
|
wchar_limits.h
|
|
|
|
.if !defined(__MINIX)
|
|
INCS+= joystick.h
|
|
.endif
|
|
|
|
.include <bsd.kinc.mk>
|