mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Taken from: https://github.com/freebsd/freebsd.git Commit id: d44ce30d3054a38723f89a161c5e003e64d1aaae
17 lines
646 B
Makefile
17 lines
646 B
Makefile
# Makefile for syscall tables
|
|
#
|
|
# $FreeBSD$
|
|
|
|
all:
|
|
@echo "make sysent only"
|
|
|
|
sysent: linux32_sysent.c linux32_syscall.h linux32_proto.h linux32_syscalls.c linux32_systrace_args.c
|
|
|
|
linux32_sysent.c linux32_syscall.h linux32_proto.h linux32_syscalls.c linux32_systrace_args.c: ../../kern/makesyscalls.sh \
|
|
syscalls.master syscalls.conf
|
|
-mv -f linux32_sysent.c linux32_sysent.c.bak
|
|
-mv -f linux32_syscall.h linux32_syscall.h.bak
|
|
-mv -f linux32_proto.h linux32_proto.h.bak
|
|
-mv -f linux32_syscalls.c linux32_syscalls.c.bak
|
|
-mv -f linux32_systrace_args.c linux32_systrace_args.c.bak
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|