mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 01:31:45 -05:00
15 lines
441 B
Makefile
15 lines
441 B
Makefile
# Makefile for syscall tables
|
|
#
|
|
# $FreeBSD$
|
|
|
|
# Don't use an OBJDIR
|
|
.OBJDIR: ${.CURDIR}
|
|
|
|
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
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|