1 1.9 mrg # $NetBSD: Makefile,v 1.9 2008/10/26 07:28:49 mrg 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.4 rmind MAN+= 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.7 rmind pset.3 sched.3 \ 13 1.3 rmind sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 \ 14 1.1 thorpej sem_wait.3 15 1.1 thorpej 16 1.1 thorpej MLINKS+= sem_open.3 sem_close.3 17 1.1 thorpej MLINKS+= sem_open.3 sem_unlink.3 18 1.1 thorpej MLINKS+= sem_wait.3 sem_trywait.3 19 1.1 thorpej 20 1.7 rmind MLINKS+= pset.3 pset_create.3 21 1.7 rmind MLINKS+= pset.3 pset_assign.3 22 1.7 rmind MLINKS+= pset.3 pset_bind.3 23 1.7 rmind MLINKS+= pset.3 pset_destroy.3 24 1.7 rmind 25 1.6 rmind MLINKS+= sched.3 sched_setparam.3 26 1.6 rmind MLINKS+= sched.3 sched_getparam.3 27 1.6 rmind MLINKS+= sched.3 sched_setscheduler.3 28 1.6 rmind MLINKS+= sched.3 sched_getscheduler.3 29 1.6 rmind MLINKS+= sched.3 sched_get_priority_max.3 30 1.6 rmind MLINKS+= sched.3 sched_get_priority_min.3 31 1.6 rmind MLINKS+= sched.3 sched_rr_get_interval.3 32 1.6 rmind MLINKS+= sched.3 sched_yield.3 33 1.6 rmind 34 1.2 rmind .include <bsd.own.mk> 35 1.2 rmind 36 1.9 mrg .include "${.CURDIR}/../libc/libcincludes.mk" 37 1.2 rmind 38 1.2 rmind AFLAGS+=-I${ARCHDIR} 39 1.2 rmind 40 1.2 rmind .include "${.CURDIR}/sys/Makefile.inc" 41 1.2 rmind 42 1.1 thorpej .include <bsd.lib.mk> 43