Deleted Added
full compact
Makefile.inc (264155) Makefile.inc (281714)
1# from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp
1# from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp
2# $FreeBSD: head/lib/libc/i386/sys/Makefile.inc 264155 2014-04-05 17:54:43Z imp $
2# $FreeBSD: head/lib/libc/i386/sys/Makefile.inc 281714 2015-04-18 21:50:13Z kib $
3
4.if !defined(COMPAT_32BIT)
5SRCS+= i386_clr_watch.c i386_set_watch.c i386_vm86.c
6.endif
7SRCS+= i386_get_fsbase.c i386_get_gsbase.c i386_get_ioperm.c i386_get_ldt.c \
8 i386_set_fsbase.c i386_set_gsbase.c i386_set_ioperm.c i386_set_ldt.c \
9 __vdso_gettc.c
10
11MDASM= Ovfork.S brk.S cerror.S exect.S getcontext.S pipe.S ptrace.S \
12 reboot.S sbrk.S setlogin.S sigreturn.S syscall.S
13
14# Don't generate default code for these syscalls:
15NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o
16
17PSEUDO= _getlogin.o _exit.o
3
4.if !defined(COMPAT_32BIT)
5SRCS+= i386_clr_watch.c i386_set_watch.c i386_vm86.c
6.endif
7SRCS+= i386_get_fsbase.c i386_get_gsbase.c i386_get_ioperm.c i386_get_ldt.c \
8 i386_set_fsbase.c i386_set_gsbase.c i386_set_ioperm.c i386_set_ldt.c \
9 __vdso_gettc.c
10
11MDASM= Ovfork.S brk.S cerror.S exect.S getcontext.S pipe.S ptrace.S \
12 reboot.S sbrk.S setlogin.S sigreturn.S syscall.S
13
14# Don't generate default code for these syscalls:
15NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o
16
17PSEUDO= _getlogin.o _exit.o
18.if ${MK_SYSCALL_COMPAT} != "no"
19PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o
20.endif
21
22MAN+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2
23MAN+= i386_set_watch.3
24
25MLINKS+=i386_get_ioperm.2 i386_set_ioperm.2
26MLINKS+=i386_get_ldt.2 i386_set_ldt.2
27MLINKS+=i386_set_watch.3 i386_clr_watch.3
18
19MAN+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2
20MAN+= i386_set_watch.3
21
22MLINKS+=i386_get_ioperm.2 i386_set_ioperm.2
23MLINKS+=i386_get_ldt.2 i386_set_ldt.2
24MLINKS+=i386_set_watch.3 i386_clr_watch.3