Deleted Added
full compact
Makefile.inc (281712) Makefile.inc (281714)
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 281712 2015-04-18 21:35:41Z kib $
2# $FreeBSD: head/lib/libc/sys/Makefile.inc 281714 2015-04-18 21:50:13Z kib $
3
4# sys sources
5.PATH: ${LIBC_SRCTOP}/${LIBC_ARCH}/sys ${LIBC_SRCTOP}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${LIBC_SRCTOP}/../../sys/sys/syscall.mk"
10

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

21
22# Sources common to both syscall interfaces:
23SRCS+= \
24 stack_protector.c \
25 stack_protector_compat.c \
26 __error.c \
27 interposing_table.c
28
3
4# sys sources
5.PATH: ${LIBC_SRCTOP}/${LIBC_ARCH}/sys ${LIBC_SRCTOP}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${LIBC_SRCTOP}/../../sys/sys/syscall.mk"
10

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

21
22# Sources common to both syscall interfaces:
23SRCS+= \
24 stack_protector.c \
25 stack_protector_compat.c \
26 __error.c \
27 interposing_table.c
28
29.if ${MK_SYSCALL_COMPAT} != "no"
30SYSCALL_COMPAT_SRCS= \
31 ftruncate.c \
32 lseek.c \
33 mmap.c \
34 pread.c \
35 pwrite.c \
36 truncate.c
37SRCS+= ${SYSCALL_COMPAT_SRCS}
38NOASM+= ${SYSCALL_COMPAT_SRCS:S/.c/.o/}
39.endif
40
41SRCS+= futimens.c utimensat.c
42NOASM+= futimens.o utimensat.o
43PSEUDO+= _futimens.o _utimensat.o
44
45INTERPOSED = \
46 accept \
47 accept4 \
48 aio_suspend \

--- 422 unchanged lines hidden ---
29SRCS+= futimens.c utimensat.c
30NOASM+= futimens.o utimensat.o
31PSEUDO+= _futimens.o _utimensat.o
32
33INTERPOSED = \
34 accept \
35 accept4 \
36 aio_suspend \

--- 422 unchanged lines hidden ---