f199109fcd
on ia64 and amd64. I'm attempting to keep the generic 32bit-on-64bit binary support seperate from the i386 support and the MD backend support.
17 lines
552 B
Makefile
17 lines
552 B
Makefile
# Makefile for syscall tables
|
|
#
|
|
# $FreeBSD$
|
|
|
|
all:
|
|
@echo "make sysent only"
|
|
|
|
sysent: freebsd32_sysent.c freebsd32_syscall.h freebsd32_proto.h
|
|
|
|
freebsd32_sysent.c freebsd32_syscalls.c freebsd32_syscall.h freebsd32_proto.h: \
|
|
../../kern/makesyscalls.sh syscalls.master syscalls.conf
|
|
-mv -f freebsd32_sysent.c freebsd32_sysent.c.bak
|
|
-mv -f freebsd32_syscalls.c freebsd32_syscalls.c.bak
|
|
-mv -f freebsd32_syscall.h freebsd32_syscall.h.bak
|
|
-mv -f freebsd32_proto.h freebsd32_proto.h.bak
|
|
sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf
|