1 1.15 joerg # $NetBSD: Makefile,v 1.15 2012/03/08 21:59:28 joerg Exp $ 2 1.1 thorpej # 3 1.1 thorpej 4 1.14 christos .include <bsd.own.mk> 5 1.14 christos 6 1.14 christos WARNS= 4 7 1.1 thorpej 8 1.1 thorpej LIB= rt 9 1.1 thorpej SRCS= sem.c 10 1.8 rmind SRCS+= pset.c 11 1.1 thorpej 12 1.11 jruoho MAN+= aio.3 aio_cancel.3 aio_error.3 aio_fsync.3 aio_read.3 aio_return.3 \ 13 1.3 rmind aio_suspend.3 aio_write.3 lio_listio.3 \ 14 1.12 jruoho mq.3 mq_close.3 mq_getattr.3 mq_notify.3 mq_open.3 mq_receive.3 \ 15 1.10 rmind mq_send.3 mq_setattr.3 mq_unlink.3 \ 16 1.7 rmind pset.3 sched.3 \ 17 1.3 rmind sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 \ 18 1.1 thorpej sem_wait.3 19 1.1 thorpej 20 1.12 jruoho MLINKS+= mq.3 mqueue.3 21 1.13 jruoho MLINKS+= mq_receive.3 mq_timedreceive.3 22 1.13 jruoho MLINKS+= mq_send.3 mq_timedsend.3 23 1.12 jruoho 24 1.1 thorpej MLINKS+= sem_open.3 sem_close.3 25 1.1 thorpej MLINKS+= sem_open.3 sem_unlink.3 26 1.15 joerg MLINKS+= sem_wait.3 sem_timedwait.3 27 1.1 thorpej MLINKS+= sem_wait.3 sem_trywait.3 28 1.1 thorpej 29 1.7 rmind MLINKS+= pset.3 pset_create.3 30 1.7 rmind MLINKS+= pset.3 pset_assign.3 31 1.7 rmind MLINKS+= pset.3 pset_bind.3 32 1.7 rmind MLINKS+= pset.3 pset_destroy.3 33 1.7 rmind 34 1.6 rmind MLINKS+= sched.3 sched_setparam.3 35 1.6 rmind MLINKS+= sched.3 sched_getparam.3 36 1.6 rmind MLINKS+= sched.3 sched_setscheduler.3 37 1.6 rmind MLINKS+= sched.3 sched_getscheduler.3 38 1.6 rmind MLINKS+= sched.3 sched_get_priority_max.3 39 1.6 rmind MLINKS+= sched.3 sched_get_priority_min.3 40 1.6 rmind MLINKS+= sched.3 sched_rr_get_interval.3 41 1.6 rmind MLINKS+= sched.3 sched_yield.3 42 1.6 rmind 43 1.2 rmind 44 1.9 mrg .include "${.CURDIR}/../libc/libcincludes.mk" 45 1.2 rmind 46 1.2 rmind AFLAGS+=-I${ARCHDIR} 47 1.2 rmind 48 1.2 rmind .include "${.CURDIR}/sys/Makefile.inc" 49 1.2 rmind 50 1.14 christos .if ${MACHINE_ARCH} == "powerpc64" 51 1.14 christos # XXX: How come it does not resolve from libc? 52 1.14 christos CPPFLAGS+=-I${NETBSDSRCDIR}/lib/libc/include 53 1.14 christos .PATH.c: ${NETBSDSRCDIR}/lib/libc/gen 54 1.14 christos SRCS+= _errno.c 55 1.14 christos .endif 56 1.14 christos 57 1.1 thorpej .include <bsd.lib.mk> 58