65a6d893ba
syscalls, unless WITHOUT_SYSCALL_COMPAT is defined. The default case will have the .c wrappers still. If you define WITHOUT_SYSCALL_COMPAT, the .c wrappers will go away and libc will make direct syscalls. After 7-stable starts, the direct syscall method will be default. Approved by: re (kensmith)
13 lines
405 B
Makefile
13 lines
405 B
Makefile
# $FreeBSD$
|
|
|
|
MDASM= Ovfork.S brk.S cerror.S pipe.S ptrace.S sbrk.S shmat.S sigreturn.S syscall.S
|
|
|
|
# Don't generate default code for these syscalls:
|
|
NOASM= break.o exit.o getdomainname.o getlogin.o openbsd_poll.o \
|
|
setdomainname.o sstk.o uname.o vfork.o yield.o
|
|
|
|
PSEUDO= _exit.o _getlogin.o
|
|
.if !defined(WITHOUT_SYSCALL_COMPAT)
|
|
PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o
|
|
.endif
|