Deleted Added
full compact
Makefile.inc (211774) Makefile.inc (212405)
1# @(#)Makefile.inc 8.3 (Berkeley) 10/24/94
1# @(#)Makefile.inc 8.3 (Berkeley) 10/24/94
2# $FreeBSD: head/lib/libc/sys/Makefile.inc 211774 2010-08-24 20:54:43Z imp $
2# $FreeBSD: head/lib/libc/sys/Makefile.inc 212405 2010-09-10 01:47:37Z davidxu $
3
4# sys sources
5.PATH: ${.CURDIR}/${LIBC_ARCH}/sys ${.CURDIR}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${.CURDIR}/../../sys/sys/syscall.mk"
10

--- 5 unchanged lines hidden (view full) ---

16.sinclude "${.CURDIR}/${LIBC_ARCH}/sys/Makefile.inc"
17
18# Sources common to both syscall interfaces:
19SRCS+= stack_protector.c stack_protector_compat.c __error.c
20.if !defined(WITHOUT_SYSCALL_COMPAT)
21SRCS+= fcntl.c ftruncate.c lseek.c mmap.c pread.c pwrite.c truncate.c
22PSEUDO+= _fcntl.o
23.endif
3
4# sys sources
5.PATH: ${.CURDIR}/${LIBC_ARCH}/sys ${.CURDIR}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${.CURDIR}/../../sys/sys/syscall.mk"
10

--- 5 unchanged lines hidden (view full) ---

16.sinclude "${.CURDIR}/${LIBC_ARCH}/sys/Makefile.inc"
17
18# Sources common to both syscall interfaces:
19SRCS+= stack_protector.c stack_protector_compat.c __error.c
20.if !defined(WITHOUT_SYSCALL_COMPAT)
21SRCS+= fcntl.c ftruncate.c lseek.c mmap.c pread.c pwrite.c truncate.c
22PSEUDO+= _fcntl.o
23.endif
24SRCS+= sigwait.c
25NOASM+= sigwait.o
26PSEUDO+= _sigwait.o
24
25# Add machine dependent asm sources:
26SRCS+=${MDASM}
27
28# Look though the complete list of syscalls (MIASM) for names that are
29# not defined with machine dependent implementations (MDASM) and are
30# not declared for no generation of default code (NOASM). Add each
31# syscall that satisfies these conditions to the ASM list.

--- 161 unchanged lines hidden ---
27
28# Add machine dependent asm sources:
29SRCS+=${MDASM}
30
31# Look though the complete list of syscalls (MIASM) for names that are
32# not defined with machine dependent implementations (MDASM) and are
33# not declared for no generation of default code (NOASM). Add each
34# syscall that satisfies these conditions to the ASM list.

--- 161 unchanged lines hidden ---