diff options
Diffstat (limited to 'lib/libc_r/sys/Makefile.inc')
-rw-r--r-- | lib/libc_r/sys/Makefile.inc | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/libc_r/sys/Makefile.inc b/lib/libc_r/sys/Makefile.inc deleted file mode 100644 index aff80e5ba05..00000000000 --- a/lib/libc_r/sys/Makefile.inc +++ /dev/null @@ -1,43 +0,0 @@ -# $OpenBSD: Makefile.inc,v 1.9 2002/01/17 04:47:14 fgsch Exp $ - -.PATH: ${LIBC_RSRCDIR}/sys ${LIBC_RSRCDIR}/arch/${MACHINE_ARCH} - -SRCS+= uthread_error.c -SRCS+= _atomic_lock.c slow_atomic_lock.c - -.if exists(${LIBC_RSRCDIR}/arch/${MACHINE_ARCH}/uthread_machdep_asm.S) -SRCS+= uthread_machdep_asm.S -.endif -.if exists(${LIBC_RSRCDIR}/arch/${MACHINE_ARCH}/uthread_machdep.c) -SRCS+= uthread_machdep.c -.endif - -.if (${LIB} == "c_r") && (${ELF_TOOLCHAIN} == "no") - -# -# All syscalls are renamed as _thread_sys_{syscall}. -# This is a list of syscalls that are renamed as _thread_sys_{syscall} -# so that libc_r can provide replacement functions. -# -HIDDEN_SYSCALLS= accept.o bind.o close.o connect.o dup.o dup2.o \ - execve.o fchflags.o fchmod.o fchown.o fcntl.o \ - flock.o fpathconf.o fstat.o fstatfs.o fsync.o getdirentries.o \ - getlogin.o getpeername.o getsockname.o getsockopt.o ioctl.o kevent.o \ - listen.o msync.o nanosleep.o open.o pipe.o poll.o read.o readv.o \ - recvfrom.o recvmsg.o sched_yield.o select.o sendmsg.o sendto.o \ - setsockopt.o shutdown.o sigaction.o sigaltstack.o \ - sigprocmask.o sigsuspend.o \ - socket.o socketpair.o wait4.o write.o writev.o \ - _exit.o - -SRCS+= _sys_aliases.c -CLEANFILES += _sys_aliases.c - -_sys_aliases.c: ${LIBC_RSRCDIR}/Makefile ${LIBCSRCDIR}/sys/Makefile.inc - echo '#include <sys/cdefs.h>' > ${.TARGET} - for fn in ${ASM:R} ${PSEUDO:R} ""; do \ - case $$fn in ${HIDDEN_SYSCALLS:.o=|}"") : stays hidden ;; \ - *) echo "__indr_reference(_thread_sys_$$fn,$$fn);";; \ - esac; \ - done >> ${.TARGET} -.endif |