1 1.11 jruoho # $NetBSD: Makefile,v 1.11 2010/05/17 17:15:42 jruoho Exp $ 2 1.1 thorpej # 3 1.1 thorpej 4 1.1 thorpej WARNS= 2 5 1.1 thorpej 6 1.1 thorpej LIB= rt 7 1.1 thorpej SRCS= sem.c 8 1.8 rmind SRCS+= pset.c 9 1.1 thorpej 10 1.11 jruoho MAN+= aio.3 aio_cancel.3 aio_error.3 aio_fsync.3 aio_read.3 aio_return.3 \ 11 1.3 rmind aio_suspend.3 aio_write.3 lio_listio.3 \ 12 1.10 rmind mq_close.3 mq_getattr.3 mq_notify.3 mq_open.3 mq_receive.3 \ 13 1.10 rmind mq_send.3 mq_setattr.3 mq_unlink.3 \ 14 1.7 rmind pset.3 sched.3 \ 15 1.3 rmind sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 \ 16 1.1 thorpej sem_wait.3 17 1.1 thorpej 18 1.1 thorpej MLINKS+= sem_open.3 sem_close.3 19 1.1 thorpej MLINKS+= sem_open.3 sem_unlink.3 20 1.1 thorpej MLINKS+= sem_wait.3 sem_trywait.3 21 1.1 thorpej 22 1.7 rmind MLINKS+= pset.3 pset_create.3 23 1.7 rmind MLINKS+= pset.3 pset_assign.3 24 1.7 rmind MLINKS+= pset.3 pset_bind.3 25 1.7 rmind MLINKS+= pset.3 pset_destroy.3 26 1.7 rmind 27 1.6 rmind MLINKS+= sched.3 sched_setparam.3 28 1.6 rmind MLINKS+= sched.3 sched_getparam.3 29 1.6 rmind MLINKS+= sched.3 sched_setscheduler.3 30 1.6 rmind MLINKS+= sched.3 sched_getscheduler.3 31 1.6 rmind MLINKS+= sched.3 sched_get_priority_max.3 32 1.6 rmind MLINKS+= sched.3 sched_get_priority_min.3 33 1.6 rmind MLINKS+= sched.3 sched_rr_get_interval.3 34 1.6 rmind MLINKS+= sched.3 sched_yield.3 35 1.6 rmind 36 1.2 rmind .include <bsd.own.mk> 37 1.2 rmind 38 1.9 mrg .include "${.CURDIR}/../libc/libcincludes.mk" 39 1.2 rmind 40 1.2 rmind AFLAGS+=-I${ARCHDIR} 41 1.2 rmind 42 1.2 rmind .include "${.CURDIR}/sys/Makefile.inc" 43 1.2 rmind 44 1.1 thorpej .include <bsd.lib.mk> 45