head	1.9;
access;
symbols
	libc-5-4-46:1.9
	libc-5-4-45:1.9
	libc-5-4-44:1.9
	libc-5-4-43:1.9
	libc-5-4-42:1.9
	libc-5-4-41:1.9
	libc-5-4-40:1.9
	libc-5-4-39:1.9
	libc-5-4-38:1.9
	libc-5-4-37:1.9
	libc-5-4-36:1.9
	libc-5-4-35:1.9
	libc-5-4-34:1.9
	libc-5-4-33:1.9
	libc-5-4-32:1.9
	libc-5-4-31:1.9
	libc-5-4-30:1.9
	libc-5-4-29:1.9
	libc-5-4-28:1.9
	libc-5-4-27:1.9
	libc-5-4-26:1.9
	libc-5-4-25:1.9
	libc-5-4-24:1.9
	libc-5-4-23:1.9
	libc-5-4-22:1.9
	libc-5-4-21:1.9
	libc-5-4-20:1.9
	libc-5-4-19:1.9
	libc-5-4-18:1.9
	libc-5-4-17-public:1.9
	libc-5-4-17:1.9
	libc-5-4-16:1.9
	libc-5-4-15:1.9
	libc-5-4-14:1.9
	libc-5-4-13:1.9
	libc-5-4-12:1.9
	libc-5-4-11:1.9
	libc-5-4-10:1.9
	libc-5-4-9:1.9
	libc-5-4-8:1.9
	libc-5-4-7-public:1.9
	libc-5-4-7:1.9
	libc-5-4-6:1.9
	libc-5-4-5:1.9
	libc-5-4-4:1.9
	libc-5-4-3:1.9
	libc-5-4-2:1.9
	libc-5-4-1:1.9
	libc-5-4-0:1.9
	libc-5-3-12:1.9
	libc-5-3-11:1.9
	libc-5-3-10:1.9
	libc-5-3-9:1.9
	libc-5-3-8:1.9
	libc-5-3-7:1.9
	libc-5-3-7-pre:1.9
	libc-5-3-6:1.9
	libc-5-3-5:1.9
	libc-5-3-4:1.9
	libc-5-3-3:1.9
	libc-5-3-2:1.9
	libc-5-3-1:1.9
	libc-5-3-0:1.9
	libc-5-2-19:1.8
	libc-5-2-18:1.8
	libc-5-2-17:1.8
	libc-5-2-16:1.8
	libc-5-2-15:1.8
	libc-5-2-14:1.8
	libc-5-2-13:1.8
	libc-5-2-12:1.8
	libc-5-2-11:1.8
	libc-5-2-10:1.8
	libc-5-2-9:1.7
	libc-5-2-8-1:1.6
	libc-5-2-8:1.6
	libc-5-2-7:1.5
	libc-5-2-6:1.5
	libc-5-2-5:1.5
	libc-5-2-4:1.2
	libc-5-2-3:1.2
	libc-5-2-2:1.2
	libc-5-2-1:1.2
	libc-5-2-0:1.2
	libc-5-1-4:1.2
	libc-5-1-3:1.2
	libc-5-1-2:1.1;
locks; strict;
comment	@# @;


1.9
date	96.01.15.02.43.13;	author hjl;	state Exp;
branches;
next	1.8;

1.8
date	95.09.28.04.01.44;	author hjl;	state Exp;
branches;
next	1.7;

1.7
date	95.09.13.02.10.27;	author hjl;	state Exp;
branches;
next	1.6;

1.6
date	95.08.24.02.03.43;	author hjl;	state Exp;
branches;
next	1.5;

1.5
date	95.08.06.06.19.03;	author hjl;	state Exp;
branches;
next	1.4;

1.4
date	95.08.05.05.07.02;	author hjl;	state Exp;
branches;
next	1.3;

1.3
date	95.08.04.04.21.43;	author hjl;	state Exp;
branches;
next	1.2;

1.2
date	95.06.18.19.22.22;	author hjl;	state Exp;
branches;
next	1.1;

1.1
date	95.06.11.00.20.08;	author hjl;	state Exp;
branches;
next	;


desc
@@


1.9
log
@Update for libc 5.3.0.
@
text
@#
# Makefile for pthreads
#

TOPDIR=../../..

override STATIC=false
override DEBUG=false
override PROFILE=false
JUMP_LIB=libpthreads

include $(TOPDIR)/Makeconfig
include $(TOPDIR)/Makerules

INC_CFLAGS= -I../$(TARGET_OS) -I$(TOPDIR)
BASE_CFLAGS:= $(BASE_CFLAGS) -DTARGET_MACHINE=\"$(TARGET_MACHINE)\" \
	-DPTHREAD_KERNEL $(PTHREAD_CFLAGS)
OPT_CFLAGS:= -g
PIC_OPT_CFLAGS:= -fPIC -g

override SHARED_LIB=$(SHARED_DIR)/libpthreads.a


DIRS:= linux

# libpthreads
SRC1S= __pthread_init.c _exit.c cleanup.c cond.c condattr.c dump_state.c \
	errno.c fd.c fd_kern.c fd_pipe.c globals.c info.c \
	mutex.c mutexattr.c prio_queue.c process.c pthread.c \
	pthread_attr.c pthread_detach.c pthread_join.c pthread_kill.c \
	pthread_once.c queue.c schedparam.c select.c sig.c signal.c \
	sleep.c specific.c wait.c mutex_malloc.c file.c pthread_init.c

SRCS=$(SRC1S) $(SRC2S)
ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
OBJS= $(SRC1S:.c=.o) $(SRC2S:.c=.o)

include $(TOPDIR)/Maketargets
@


1.8
log
@Update for libc 5.2.10.
@
text
@d17 1
a17 1
	-DPTHREAD_KERNEL
d21 1
a21 2
override STATIC_LIB=$(STATIC_DIR)/libpthread.a
override SHARED_LIB=$(SHARED_DIR)/libpthread.a
d27 1
a27 1
SRC1S= __pthread_init.c _exit.c cleanup.c cond.c dump_state.c \
@


1.7
log
@Update for libc 5.2.9.
@
text
@d10 1
a10 1
JUMP_LIB=libpthread
@


1.6
log
@Update for libc 5.2.8.
@
text
@d7 1
@


1.5
log
@Update for MIT pthread.
@
text
@d32 1
a32 1
	sleep.c specific.c wait.c mutex_malloc.c file.c
@


1.4
log
@Update for MT.
@
text
@d17 2
@


1.3
log
@Add MT stuff to libio.
@
text
@d22 1
a22 1
DIRS:=
@


1.2
log
@Update for Linux.
@
text
@d30 1
a30 1
	sleep.c specific.c wait.c mutex_malloc.c
@


1.1
log
@Update for libc 5.1.2.
@
text
@d30 1
a30 1
	sleep.c specific.c wait.c
@

