Home | History | Annotate | Line # | Download | only in librt
Makefile revision 1.19.2.1
      1  1.19.2.1  pgoyette #	$NetBSD: Makefile,v 1.19.2.1 2016/08/06 00:19:02 pgoyette Exp $
      2       1.1   thorpej #
      3       1.1   thorpej 
      4      1.14  christos .include <bsd.own.mk>
      5      1.14  christos 
      6      1.16      matt WARNS?=	5
      7       1.1   thorpej 
      8       1.1   thorpej LIB=	rt
      9      1.17     rmind 
     10      1.17     rmind SRCS=	sem.c shm.c pset.c
     11       1.1   thorpej 
     12      1.11    jruoho MAN+=	aio.3 aio_cancel.3 aio_error.3 aio_fsync.3 aio_read.3 aio_return.3 \
     13       1.3     rmind 	aio_suspend.3 aio_write.3 lio_listio.3 \
     14      1.12    jruoho 	mq.3 mq_close.3 mq_getattr.3 mq_notify.3 mq_open.3 mq_receive.3 \
     15      1.10     rmind 	mq_send.3 mq_setattr.3 mq_unlink.3 \
     16      1.18     rmind 	pset.3 sched.3 shm_open.3 \
     17       1.3     rmind 	sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 \
     18       1.1   thorpej 	sem_wait.3
     19       1.1   thorpej 
     20      1.12    jruoho MLINKS+=	mq.3 mqueue.3
     21      1.13    jruoho MLINKS+=	mq_receive.3 mq_timedreceive.3
     22      1.13    jruoho MLINKS+=	mq_send.3 mq_timedsend.3
     23      1.12    jruoho 
     24       1.1   thorpej MLINKS+=	sem_open.3 sem_close.3
     25       1.1   thorpej MLINKS+=	sem_open.3 sem_unlink.3
     26      1.15     joerg MLINKS+=	sem_wait.3 sem_timedwait.3
     27       1.1   thorpej MLINKS+=	sem_wait.3 sem_trywait.3
     28       1.1   thorpej 
     29       1.7     rmind MLINKS+=	pset.3 pset_create.3
     30       1.7     rmind MLINKS+=	pset.3 pset_assign.3
     31       1.7     rmind MLINKS+=	pset.3 pset_bind.3
     32       1.7     rmind MLINKS+=	pset.3 pset_destroy.3
     33       1.7     rmind 
     34       1.6     rmind MLINKS+=	sched.3 sched_setparam.3
     35       1.6     rmind MLINKS+=	sched.3 sched_getparam.3
     36      1.19  christos MLINKS+=	sched.3 sched_protect.3
     37       1.6     rmind MLINKS+=	sched.3 sched_setscheduler.3
     38       1.6     rmind MLINKS+=	sched.3 sched_getscheduler.3
     39       1.6     rmind MLINKS+=	sched.3 sched_get_priority_max.3
     40       1.6     rmind MLINKS+=	sched.3 sched_get_priority_min.3
     41       1.6     rmind MLINKS+=	sched.3 sched_rr_get_interval.3
     42       1.6     rmind MLINKS+=	sched.3 sched_yield.3
     43  1.19.2.1  pgoyette MLINKS+=	sched.3 sched_setaffinity_np.3
     44  1.19.2.1  pgoyette MLINKS+=	sched.3 sched_getaffinity_np.3
     45       1.6     rmind 
     46      1.18     rmind MLINKS+=	shm_open.3 shm_unlink.3
     47       1.2     rmind 
     48       1.9       mrg .include "${.CURDIR}/../libc/libcincludes.mk"
     49       1.2     rmind 
     50       1.2     rmind AFLAGS+=-I${ARCHDIR}
     51       1.2     rmind 
     52       1.2     rmind .include "${.CURDIR}/sys/Makefile.inc"
     53       1.2     rmind 
     54      1.14  christos .if ${MACHINE_ARCH} == "powerpc64"
     55      1.14  christos # XXX: How come it does not resolve from libc?
     56      1.14  christos CPPFLAGS+=-I${NETBSDSRCDIR}/lib/libc/include
     57      1.14  christos .PATH.c: ${NETBSDSRCDIR}/lib/libc/gen
     58      1.14  christos SRCS+= _errno.c
     59      1.14  christos .endif
     60      1.14  christos 
     61       1.1   thorpej .include <bsd.lib.mk>
     62