43 lines
986 B
Makefile
43 lines
986 B
Makefile
# $NetBSD: Makefile,v 1.9 2008/10/26 07:28:49 mrg Exp $
|
|
#
|
|
|
|
WARNS= 2
|
|
|
|
LIB= rt
|
|
SRCS= sem.c
|
|
SRCS+= pset.c
|
|
|
|
MAN+= aio_cancel.3 aio_error.3 aio_fsync.3 aio_read.3 aio_return.3 \
|
|
aio_suspend.3 aio_write.3 lio_listio.3 \
|
|
pset.3 sched.3 \
|
|
sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 \
|
|
sem_wait.3
|
|
|
|
MLINKS+= sem_open.3 sem_close.3
|
|
MLINKS+= sem_open.3 sem_unlink.3
|
|
MLINKS+= sem_wait.3 sem_trywait.3
|
|
|
|
MLINKS+= pset.3 pset_create.3
|
|
MLINKS+= pset.3 pset_assign.3
|
|
MLINKS+= pset.3 pset_bind.3
|
|
MLINKS+= pset.3 pset_destroy.3
|
|
|
|
MLINKS+= sched.3 sched_setparam.3
|
|
MLINKS+= sched.3 sched_getparam.3
|
|
MLINKS+= sched.3 sched_setscheduler.3
|
|
MLINKS+= sched.3 sched_getscheduler.3
|
|
MLINKS+= sched.3 sched_get_priority_max.3
|
|
MLINKS+= sched.3 sched_get_priority_min.3
|
|
MLINKS+= sched.3 sched_rr_get_interval.3
|
|
MLINKS+= sched.3 sched_yield.3
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.include "${.CURDIR}/../libc/libcincludes.mk"
|
|
|
|
AFLAGS+=-I${ARCHDIR}
|
|
|
|
.include "${.CURDIR}/sys/Makefile.inc"
|
|
|
|
.include <bsd.lib.mk>
|