Deleted Added
full compact
Makefile.inc (211748) Makefile.inc (211774)
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 211748 2010-08-24 12:58:54Z kib $
2# $FreeBSD: head/lib/libc/sys/Makefile.inc 211774 2010-08-24 20:54:43Z imp $
3
4# sys sources
3
4# sys sources
5.PATH: ${.CURDIR}/${MACHINE_CPUARCH}/sys ${.CURDIR}/sys
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
11# Include machine dependent definitions.
12#
13# MDASM names override the default syscall names in MIASM.
14# NOASM will prevent the default syscall code from being generated.
15#
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${.CURDIR}/../../sys/sys/syscall.mk"
10
11# Include machine dependent definitions.
12#
13# MDASM names override the default syscall names in MIASM.
14# NOASM will prevent the default syscall code from being generated.
15#
16.if exists(${.CURDIR}/${MACHINE_CPUARCH}/sys/Makefile.inc)
17.include "${.CURDIR}/${MACHINE_CPUARCH}/sys/Makefile.inc"
18.endif
16.sinclude "${.CURDIR}/${LIBC_ARCH}/sys/Makefile.inc"
19
20# Sources common to both syscall interfaces:
21SRCS+= stack_protector.c stack_protector_compat.c __error.c
22.if !defined(WITHOUT_SYSCALL_COMPAT)
23SRCS+= fcntl.c ftruncate.c lseek.c mmap.c pread.c pwrite.c truncate.c
24PSEUDO+= _fcntl.o
25.endif
26

--- 168 unchanged lines hidden ---
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
24

--- 168 unchanged lines hidden ---