ea0fabbc4f
with the COMPAT_LINUX32 option. This is largely based on the i386 MD Linux emulations bits, but also builds on the 32-bit FreeBSD and generic IA-32 binary emulation work. Some of this is still a little rough around the edges, and will need to be revisited before 32-bit and 64-bit Linux emulation support can coexist in the same kernel.
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
|