Deleted Added
full compact
Makefile.inc (232574) Makefile.inc (237434)
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 232574 2012-03-05 20:59:34Z pjd $
2# $FreeBSD: head/lib/libc/sys/Makefile.inc 237434 2012-06-22 07:13:30Z kib $
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
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.sinclude "${.CURDIR}/${LIBC_ARCH}/sys/Makefile.inc"
17
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
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.sinclude "${.CURDIR}/${LIBC_ARCH}/sys/Makefile.inc"
17
18SRCS+= clock_gettime.c gettimeofday.c __vdso_gettimeofday.c
19NOASM+= clock_gettime.o gettimeofday.o
20PSEUDO+= _clock_gettime.o _gettimeofday.o
21
18# Sources common to both syscall interfaces:
19SRCS+= stack_protector.c stack_protector_compat.c __error.c
20.if !defined(WITHOUT_SYSCALL_COMPAT)
21SYSCALL_COMPAT_SRCS= fcntl.c ftruncate.c lseek.c mmap.c pread.c \
22 pwrite.c truncate.c
23SRCS+= ${SYSCALL_COMPAT_SRCS}
24NOASM+= ${SYSCALL_COMPAT_SRCS:S/.c/.o/}
25PSEUDO+= _fcntl.o

--- 192 unchanged lines hidden ---
22# Sources common to both syscall interfaces:
23SRCS+= stack_protector.c stack_protector_compat.c __error.c
24.if !defined(WITHOUT_SYSCALL_COMPAT)
25SYSCALL_COMPAT_SRCS= fcntl.c ftruncate.c lseek.c mmap.c pread.c \
26 pwrite.c truncate.c
27SRCS+= ${SYSCALL_COMPAT_SRCS}
28NOASM+= ${SYSCALL_COMPAT_SRCS:S/.c/.o/}
29PSEUDO+= _fcntl.o

--- 192 unchanged lines hidden ---