4513f19345
will have unimplemented services showing their names in ktrace Add a new generated file with only service id and name, which will be included by kdump to display services names. This removes the need for using the user ktrace facility for services names.
17 lines
557 B
Makefile
17 lines
557 B
Makefile
# $NetBSD: Makefile,v 1.5 2003/11/15 22:55:35 manu Exp $
|
|
|
|
SYSCALL_DEP= syscalls.conf syscalls.master ../../kern/makesyscalls.sh
|
|
SYSCALL_OBJS= mach_sysent.c mach_syscalls.c mach_syscall.h mach_syscallargs.h
|
|
MACH_DEP= mach_services.master makemachservices.sh
|
|
MACH_OBJ= mach_services.c mach_services.h mach_services_names.c
|
|
|
|
all: ${SYSCALL_OBJS} ${MACH_OBJ}
|
|
|
|
.include <bsd.sys.mk> # for HOST_SH
|
|
|
|
${SYSCALL_OBJS}: ${SYSCALL_DEP}
|
|
${HOST_SH} ../../kern/makesyscalls.sh syscalls.conf syscalls.master
|
|
|
|
${MACH_OBJ}: ${MACH_DEP}
|
|
${HOSH_SH} ./makemachservices.sh
|