NetBSD/lib/libposix/sys/Makefile.inc

38 lines
1.1 KiB
Makefile

# $NetBSD: Makefile.inc,v 1.23 2011/01/18 16:41:51 matt Exp $
# sys sources
.PATH: ${.CURDIR}/sys
.PATH: ${ARCHDIR}/sys
# stubs providing an entry "foo" but calling "__posix_foo()"
PSEUDO= chown.S fchown.S lchown.S rename.S
SRCS+= ${PSEUDO}
CLEANFILES+= ${PSEUDO}
LIBCDIR!= cd ${NETBSDSRCDIR}/lib/libc && ${PRINTOBJDIR}
SRCS+= cerror.S
CPPFLAGS+= -D__cerror=__posix_cerror -I${LIBCDIR} -D_REENTRANT
ASMDEPS= ${.CURDIR}/sys/Makefile.inc ${ARCHDIR}/SYS.h \
${DESTDIR}/usr/include/sys/syscall.h
${PSEUDO}: ${ASMDEPS}
${_MKTARGET_CREATE}
printf '#include "SYS.h"\nPSEUDO(${.PREFIX},${.PREFIX:S/^/__posix_/})\n' \
>${.TARGET}
# Lint stubs for all automatically-generated assembly stubs (GENERATED)
.if ${MKLINT} != "no"
LSRCS+= LintSysPseudo.c
DPSRCS+= LintSysPseudo.c
CLEANFILES+= LintSysPseudo.c
.endif
LintSysPseudo.c: ${NETBSDSRCDIR}/lib/libc/sys/makelintstub \
${DESTDIR}/usr/include/sys/syscall.h
${_MKTARGET_CREATE}
CPP=${CPP:Q} ${HOST_SH} ${NETBSDSRCDIR}/lib/libc/sys/makelintstub \
-o ${.TARGET} -p -s ${DESTDIR}/usr/include/sys/syscall.h ${PSEUDO}