Deleted Added
full compact
Makefile.inc (63988) Makefile.inc (64106)
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 63988 2000-07-29 00:28:44Z peter $
2# $FreeBSD: head/lib/libc/sys/Makefile.inc 64106 2000-08-01 18:50:29Z peter $
3
4# sys sources
5.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/sys ${.CURDIR}/../libc/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

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

26# Add machine dependent asm sources:
27SRCS+=${MDASM}
28
29# Look though the complete list of syscalls (MIASM) for names that are
30# not defined with machine dependent implementations (MDASM) and are
31# not declared for no generation of default code (NOASM). If the
32# syscall is not hidden, add it to the ASM list, otherwise add it
33# to the ASMR list.
3
4# sys sources
5.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/sys ${.CURDIR}/../libc/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

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

26# Add machine dependent asm sources:
27SRCS+=${MDASM}
28
29# Look though the complete list of syscalls (MIASM) for names that are
30# not defined with machine dependent implementations (MDASM) and are
31# not declared for no generation of default code (NOASM). If the
32# syscall is not hidden, add it to the ASM list, otherwise add it
33# to the ASMR list.
34.for _asm in ${MIASM:S/sys_exit/exit/}
34.for _asm in ${MIASM}
35.if (${MDASM:R:M${_asm:R}} == "")
36.if (${NOASM:R:M${_asm:R}} == "")
37.if (${HIDDEN_SYSCALLS:R:M${_asm:R}} == "")
38ASM+=$(_asm)
39.else
40ASMR+=$(_asm)
41.endif
42.endif

--- 112 unchanged lines hidden ---
35.if (${MDASM:R:M${_asm:R}} == "")
36.if (${NOASM:R:M${_asm:R}} == "")
37.if (${HIDDEN_SYSCALLS:R:M${_asm:R}} == "")
38ASM+=$(_asm)
39.else
40ASMR+=$(_asm)
41.endif
42.endif

--- 112 unchanged lines hidden ---