mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
13 lines
378 B
Makefile
13 lines
378 B
Makefile
|
|
# Makefile for syscall tables
|
||
|
|
#
|
||
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
all:
|
||
|
|
@echo "make sysent only"
|
||
|
|
|
||
|
|
sysent: linux_sysent.c linux_syscall.h linux_proto.h linux_syscalls.c linux_systrace_args.c
|
||
|
|
|
||
|
|
linux_sysent.c linux_syscall.h linux_proto.h linux_syscalls.c linux_systrace_args.c: \
|
||
|
|
../../kern/makesyscalls.sh syscalls.master syscalls.conf
|
||
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|