14 lines
379 B
Makefile
14 lines
379 B
Makefile
# Makefile for syscall tables
|
|
#
|
|
# $FreeBSD$
|
|
|
|
all:
|
|
@echo "make linux_sysent.c only"
|
|
|
|
linux_sysent.c linux_syscall.h linux_proto.h: ../../kern/makesyscalls.sh \
|
|
syscalls.master syscalls.conf
|
|
-mv -f linux_sysent.c linux_sysent.c.bak
|
|
-mv -f linux_syscall.h linux_syscall.h.bak
|
|
-mv -f linux_proto.h linux_proto.h.bak
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|