Home | History | Annotate | Line # | Download | only in libpthread
Makefile revision 1.37
      1  1.37        ad #	$NetBSD: Makefile,v 1.37 2006/12/24 18:39:45 ad Exp $
      2   1.9   thorpej #
      3   1.9   thorpej 
      4  1.36        ad PTHREAD_SA=1
      5   1.9   thorpej WARNS=	2
      6  1.24        cl 
      7  1.24        cl # Define PT_FIXEDSTACKSIZE_LG to set a fixed stacksize
      8  1.24        cl #CPPFLAGS+=-DPT_FIXEDSTACKSIZE_LG=18
      9   1.9   thorpej 
     10   1.9   thorpej .include <bsd.own.mk>
     11   1.9   thorpej 
     12   1.9   thorpej .if exists(${.CURDIR}/arch/${MACHINE_ARCH})
     13   1.9   thorpej ARCHSUBDIR=	${MACHINE_ARCH}
     14   1.9   thorpej .elif exists(${.CURDIR}/arch/${MACHINE_CPU}) 
     15   1.9   thorpej ARCHSUBDIR=	${MACHINE_CPU}
     16   1.9   thorpej .else
     17   1.9   thorpej .BEGIN:
     18  1.10   thorpej 	@echo "WARNING: no ARCHSUBDIR for ${MACHINE_ARCH}/${MACHINE_CPU}; skipping..."
     19   1.9   thorpej .endif
     20   1.9   thorpej 
     21  1.10   thorpej INCS=	pthread.h pthread_types.h pthread_queue.h
     22  1.10   thorpej INCSDIR=/usr/include
     23  1.10   thorpej 
     24   1.9   thorpej .if defined(ARCHSUBDIR)
     25   1.9   thorpej 
     26   1.9   thorpej ARCHDIR=	${.CURDIR}/arch/${ARCHSUBDIR}
     27   1.9   thorpej .PATH:	${ARCHDIR}
     28   1.9   thorpej 
     29  1.11  christos CPPFLAGS+=	-I${ARCHDIR} -I${.CURDIR} -I${.OBJDIR} -D_LIBC
     30  1.37        ad CPPFLAGS+=	-D__LIBPTHREAD_SOURCE__
     31   1.9   thorpej 
     32  1.36        ad .if defined(PTHREAD_SA)
     33  1.37        ad CPPFLAGS+=	-DPTHREAD_SA -DPTHREAD_MLOCK_KLUDGE
     34  1.36        ad .endif
     35  1.36        ad 
     36  1.35  christos # XXX: This crappy poke at libc's internals needs to be fixed.
     37  1.35  christos # We need to put this *after our own includes, so that our "assym.h"
     38  1.35  christos # gets picked, instead of the libc one
     39  1.35  christos CPPFLAGS+=-I${NETBSDSRCDIR}/sys -I${.CURDIR}/../libc
     40  1.35  christos 
     41   1.9   thorpej DPSRCS+=	assym.h
     42  1.20     lukem CLEANFILES+=	assym.h
     43   1.9   thorpej 
     44  1.31   thorpej assym.h: ${ARCHDIR}/genassym.cf pthread.h pthread_int.h pthread_md.h
     45  1.25     lukem 	${_MKTARGET_CREATE}
     46  1.31   thorpej 	${TOOL_GENASSYM} -- ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
     47   1.9   thorpej 		< ${ARCHDIR}/genassym.cf > assym.h.tmp && \
     48   1.9   thorpej 	mv -f assym.h.tmp assym.h
     49   1.9   thorpej 
     50   1.9   thorpej LIB=	pthread
     51   1.9   thorpej 
     52   1.9   thorpej #
     53   1.9   thorpej # NOTE: When you create a new file for libpthread, make sure that pthread.c
     54   1.9   thorpej # gets a reference to a symbol in that file.  Otherwise, Unix's stupid static
     55   1.9   thorpej # library semantics will end up discarding potentially important objects.
     56   1.9   thorpej #
     57   1.9   thorpej SRCS=	pthread.c 
     58   1.9   thorpej SRCS+=	pthread_alarms.c
     59  1.18   nathanw SRCS+=	pthread_attr.c
     60   1.9   thorpej SRCS+=	pthread_barrier.c
     61   1.9   thorpej SRCS+=	pthread_cancelstub.c
     62   1.9   thorpej SRCS+=	pthread_cond.c
     63   1.9   thorpej SRCS+=	pthread_lock.c 
     64   1.9   thorpej SRCS+=	pthread_mutex.c
     65   1.9   thorpej SRCS+=	pthread_run.c
     66   1.9   thorpej SRCS+=	pthread_rwlock.c
     67   1.9   thorpej SRCS+=	pthread_sa.c
     68   1.9   thorpej SRCS+=	pthread_sig.c
     69  1.16   nathanw SRCS+=	pthread_sleep.c
     70   1.9   thorpej SRCS+=	pthread_specific.c
     71   1.9   thorpej SRCS+=  pthread_stack.c
     72  1.21   nathanw SRCS+=	pthread_tsd.c
     73   1.9   thorpej SRCS+=  pthread_debug.c
     74  1.26  christos SRCS+=	res_state.c
     75   1.9   thorpej SRCS+=	sched.c
     76  1.11  christos SRCS+=	sem.c
     77   1.9   thorpej # Architecture-dependent files
     78  1.36        ad .if defined(PTHREAD_SA)
     79  1.36        ad SRCS+=	pthread_switch.S
     80  1.36        ad .endif
     81  1.36        ad SRCS+=	_context_u.S
     82   1.9   thorpej .if exists(${ARCHDIR}/pthread_md.c)
     83   1.9   thorpej SRCS+= pthread_md.c
     84   1.9   thorpej .endif
     85  1.21   nathanw 
     86  1.21   nathanw # The TSD routines are used in the implementation of profiling, and so
     87  1.21   nathanw # can't be profiled themselves.
     88  1.21   nathanw pthread_specific.po: pthread_specific.o
     89  1.25     lukem 	${_MKTARGET_CREATE}
     90  1.21   nathanw 	cp pthread_specific.o pthread_specific.po
     91  1.21   nathanw 
     92  1.21   nathanw _context_u.po: _context_u.o
     93  1.25     lukem 	${_MKTARGET_CREATE}
     94  1.21   nathanw 	cp _context_u.o _context_u.po
     95  1.17   nathanw 
     96  1.19       wiz MAN+=	pthread.3 \
     97  1.23  christos 	pthread_attr.3 pthread_attr_setcreatesuspend_np.3 \
     98  1.17   nathanw 	pthread_barrier_destroy.3 pthread_barrier_init.3 \
     99  1.17   nathanw 	pthread_barrier_wait.3 pthread_barrierattr.3 \
    100  1.17   nathanw 	pthread_cancel.3 pthread_cleanup_push.3 \
    101  1.17   nathanw 	pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 \
    102  1.17   nathanw 	pthread_cond_wait.3 \
    103  1.17   nathanw 	pthread_condattr.3 pthread_create.3 pthread_detach.3 pthread_equal.3 \
    104  1.17   nathanw 	pthread_exit.3 pthread_getspecific.3 pthread_join.3 \
    105  1.17   nathanw 	pthread_key_create.3 pthread_key_delete.3 pthread_kill.3 \
    106  1.17   nathanw 	pthread_mutex_destroy.3 pthread_mutex_init.3 pthread_mutex_lock.3 \
    107  1.17   nathanw 	pthread_mutex_unlock.3 pthread_mutexattr.3 \
    108  1.17   nathanw 	pthread_once.3 pthread_rwlock_destroy.3 pthread_rwlock_init.3 \
    109  1.17   nathanw 	pthread_rwlock_rdlock.3 pthread_rwlock_unlock.3 \
    110  1.17   nathanw 	pthread_rwlock_wrlock.3 pthread_rwlockattr.3 \
    111  1.17   nathanw 	pthread_schedparam.3 pthread_self.3 \
    112  1.17   nathanw 	pthread_setspecific.3 pthread_sigmask.3 pthread_spin_destroy.3 \
    113  1.17   nathanw 	pthread_spin_init.3 pthread_spin_lock.3 pthread_spin_unlock.3 \
    114  1.29      yamt 	pthread_suspend_np.3 pthread_testcancel.3 \
    115  1.29      yamt 	sched_yield.3
    116  1.17   nathanw 
    117  1.17   nathanw MLINKS+=	pthread_attr.3 pthread_attr_init.3
    118  1.17   nathanw MLINKS+=	pthread_attr.3 pthread_attr_destroy.3
    119  1.17   nathanw MLINKS+=	pthread_attr.3 pthread_attr_setdetachstate.3
    120  1.17   nathanw MLINKS+=	pthread_attr.3 pthread_attr_getdetachstate.3
    121  1.33     peter MLINKS+=	pthread_attr.3 pthread_attr_setschedparam.3
    122  1.33     peter MLINKS+=	pthread_attr.3 pthread_attr_getschedparam.3
    123  1.32     peter MLINKS+=	pthread_barrierattr.3 pthread_barrierattr_init.3
    124  1.32     peter MLINKS+=	pthread_barrierattr.3 pthread_barrierattr_destroy.3
    125  1.17   nathanw MLINKS+=	pthread_cleanup_push.3 pthread_cleanup_pop.3
    126  1.17   nathanw MLINKS+=	pthread_cond_broadcast.3 pthread_cond_signal.3
    127  1.17   nathanw MLINKS+=	pthread_cond_wait.3 pthread_cond_timedwait.3
    128  1.17   nathanw MLINKS+=	pthread_condattr.3 pthread_condattr_init.3
    129  1.17   nathanw MLINKS+=	pthread_condattr.3 pthread_condattr_destroy.3
    130  1.17   nathanw MLINKS+=	pthread_mutex_lock.3 pthread_mutex_trylock.3
    131  1.17   nathanw MLINKS+=	pthread_mutexattr.3 pthread_mutexattr_init.3
    132  1.17   nathanw MLINKS+=	pthread_mutexattr.3 pthread_mutexattr_destroy.3
    133  1.17   nathanw MLINKS+=	pthread_mutexattr.3 pthread_mutexattr_settype.3
    134  1.17   nathanw MLINKS+=	pthread_mutexattr.3 pthread_mutexattr_gettype.3
    135  1.17   nathanw MLINKS+=	pthread_rwlock_rdlock.3 pthread_rwlock_timedrdlock.3
    136  1.17   nathanw MLINKS+=	pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3
    137  1.17   nathanw MLINKS+=	pthread_rwlock_wrlock.3 pthread_rwlock_timedwrlock.3
    138  1.17   nathanw MLINKS+=	pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3
    139  1.17   nathanw MLINKS+=	pthread_rwlockattr.3 pthread_rwlockattr_init.3
    140  1.17   nathanw MLINKS+=	pthread_rwlockattr.3 pthread_rwlockattr_destroy.3
    141  1.17   nathanw MLINKS+=	pthread_schedparam.3 pthread_setschedparam.3
    142  1.17   nathanw MLINKS+=	pthread_schedparam.3 pthread_getschedparam.3
    143  1.27     pooka MLINKS+=	pthread_spin_lock.3 pthread_spin_trylock.3
    144  1.23  christos MLINKS+=	pthread_suspend_np.3 pthread_resume_np.3
    145  1.17   nathanw MLINKS+=	pthread_testcancel.3 pthread_setcancelstate.3
    146  1.17   nathanw MLINKS+=	pthread_testcancel.3 pthread_setcanceltype.3
    147   1.9   thorpej 
    148   1.9   thorpej pthread_switch.S _context_u.S: assym.h
    149   1.9   thorpej 
    150   1.9   thorpej debuglog: debuglog.o
    151   1.9   thorpej 	$(CC) -o debuglog debuglog.o -lpthread
    152   1.1    proven 
    153   1.1    proven .include <bsd.lib.mk>
    154   1.1    proven 
    155   1.9   thorpej .else
    156   1.9   thorpej 
    157   1.9   thorpej .include <bsd.man.mk>
    158  1.10   thorpej .include <bsd.files.mk>
    159  1.10   thorpej .include <bsd.inc.mk>
    160   1.9   thorpej 
    161   1.9   thorpej .endif
    162   1.9   thorpej 
    163   1.9   thorpej # WARNS=2 sets -Wcast-qual. This causes problems for one of
    164   1.9   thorpej # pthread_setspecific() and pthread_getspecific(), since the constness
    165   1.9   thorpej # of the argument to setspecific() has to be discarded *somewhere*
    166   1.9   thorpej # before returning it from getspecific().
    167   1.9   thorpej CFLAGS+= -Wno-cast-qual
    168