mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
16 lines
450 B
Makefile
16 lines
450 B
Makefile
|
|
# Makefile for syscall tables
|
||
|
|
#
|
||
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
all:
|
||
|
|
@echo "make sysent only"
|
||
|
|
|
||
|
|
sysent: linux32_sysent.c linux32_syscall.h linux32_proto.h
|
||
|
|
|
||
|
|
linux32_sysent.c linux32_syscall.h linux32_proto.h: ../../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
|
||
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|