20 lines
645 B
Makefile
20 lines
645 B
Makefile
# Makefile for syscall tables
|
|
#
|
|
# $FreeBSD$
|
|
|
|
all:
|
|
@echo "make sysent only"
|
|
|
|
sysent: freebsd32_sysent.c freebsd32_syscall.h freebsd32_proto.h
|
|
|
|
freebsd32_sysent.c freebsd32_syscalls.c freebsd32_syscall.h freebsd32_proto.h: \
|
|
../../kern/makesyscalls.sh syscalls.master syscalls.conf
|
|
-mv -f freebsd32_sysent.c freebsd32_sysent.c.bak
|
|
-mv -f freebsd32_syscalls.c freebsd32_syscalls.c.bak
|
|
-mv -f freebsd32_syscall.h freebsd32_syscall.h.bak
|
|
-mv -f freebsd32_proto.h freebsd32_proto.h.bak
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|
|
|
|
clean:
|
|
rm -f freebsd32_sysent.c freebsd32_syscalls.c freebsd32_syscall.h freebsd32_proto.h
|