Home | History | Annotate | Line # | Download | only in librt
Makefile revision 1.4.4.1
      1  1.4.4.1     matt #	Makefile,v 1.4 2007/06/17 12:47:41 rmind 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.4.4.1     matt SRCS+=	sched.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.4.4.1     matt 	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.4.4.1     matt MLINKS+=	pset.3 pset_create.3
     21  1.4.4.1     matt MLINKS+=	pset.3 pset_assign.3
     22  1.4.4.1     matt MLINKS+=	pset.3 pset_bind.3
     23  1.4.4.1     matt MLINKS+=	pset.3 pset_destroy.3
     24  1.4.4.1     matt 
     25  1.4.4.1     matt MLINKS+=	sched.3 sched_setparam.3
     26  1.4.4.1     matt MLINKS+=	sched.3 sched_getparam.3
     27  1.4.4.1     matt MLINKS+=	sched.3 sched_setscheduler.3
     28  1.4.4.1     matt MLINKS+=	sched.3 sched_getscheduler.3
     29  1.4.4.1     matt MLINKS+=	sched.3 sched_get_priority_max.3
     30  1.4.4.1     matt MLINKS+=	sched.3 sched_get_priority_min.3
     31  1.4.4.1     matt MLINKS+=	sched.3 sched_rr_get_interval.3
     32  1.4.4.1     matt MLINKS+=	sched.3 sched_yield.3
     33  1.4.4.1     matt 
     34      1.2    rmind .include <bsd.own.mk>
     35      1.2    rmind 
     36      1.2    rmind .if exists(${NETBSDSRCDIR}/lib/libc/arch/${MACHINE_ARCH})
     37      1.2    rmind ARCHDIR=	${NETBSDSRCDIR}/lib/libc/arch/${MACHINE_ARCH}
     38      1.2    rmind .elif exists(${NETBSDSRCDIR}/lib/libc/arch/${MACHINE_CPU})
     39      1.2    rmind ARCHDIR=	${NETBSDSRCDIR}/lib/libc/arch/${MACHINE_CPU}
     40      1.2    rmind .else
     41      1.2    rmind .BEGIN:
     42      1.2    rmind 	@echo no ARCHDIR for ${MACHINE_ARCH} nor ${MACHINE_CPU}
     43      1.2    rmind 	@false
     44      1.2    rmind .endif
     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.1  thorpej .include <bsd.lib.mk>
     51