Makefile revision 1.11
11.11Sjruoho#	$NetBSD: Makefile,v 1.11 2010/05/17 17:15:42 jruoho Exp $
21.1Sthorpej#
31.1Sthorpej
41.1SthorpejWARNS=	2
51.1Sthorpej
61.1SthorpejLIB=	rt
71.1SthorpejSRCS=	sem.c
81.8SrmindSRCS+=	pset.c
91.1Sthorpej
101.11SjruohoMAN+=	aio.3 aio_cancel.3 aio_error.3 aio_fsync.3 aio_read.3 aio_return.3 \
111.3Srmind	aio_suspend.3 aio_write.3 lio_listio.3 \
121.10Srmind	mq_close.3 mq_getattr.3 mq_notify.3 mq_open.3 mq_receive.3 \
131.10Srmind	mq_send.3 mq_setattr.3 mq_unlink.3 \
141.7Srmind	pset.3 sched.3 \
151.3Srmind	sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 \
161.1Sthorpej	sem_wait.3
171.1Sthorpej
181.1SthorpejMLINKS+=	sem_open.3 sem_close.3
191.1SthorpejMLINKS+=	sem_open.3 sem_unlink.3
201.1SthorpejMLINKS+=	sem_wait.3 sem_trywait.3
211.1Sthorpej
221.7SrmindMLINKS+=	pset.3 pset_create.3
231.7SrmindMLINKS+=	pset.3 pset_assign.3
241.7SrmindMLINKS+=	pset.3 pset_bind.3
251.7SrmindMLINKS+=	pset.3 pset_destroy.3
261.7Srmind
271.6SrmindMLINKS+=	sched.3 sched_setparam.3
281.6SrmindMLINKS+=	sched.3 sched_getparam.3
291.6SrmindMLINKS+=	sched.3 sched_setscheduler.3
301.6SrmindMLINKS+=	sched.3 sched_getscheduler.3
311.6SrmindMLINKS+=	sched.3 sched_get_priority_max.3
321.6SrmindMLINKS+=	sched.3 sched_get_priority_min.3
331.6SrmindMLINKS+=	sched.3 sched_rr_get_interval.3
341.6SrmindMLINKS+=	sched.3 sched_yield.3
351.6Srmind
361.2Srmind.include <bsd.own.mk>
371.2Srmind
381.9Smrg.include "${.CURDIR}/../libc/libcincludes.mk"
391.2Srmind
401.2SrmindAFLAGS+=-I${ARCHDIR}
411.2Srmind
421.2Srmind.include "${.CURDIR}/sys/Makefile.inc"
431.2Srmind
441.1Sthorpej.include <bsd.lib.mk>
45