# $Id: Makefile,v 1.1.1.1 1996/06/29 01:20:53 mtp Exp $
############################################################################
#    
#  COPYRIGHT NOTICE
#    
#  Copyright (C) 1995, 1996 Michael T. Peterson
#  This file is part of the PCthreads (tm) multithreading library
#  package.
#    
#  The source files and libraries constituting the PCthreads (tm) package
#  are free software; you can redistribute them and/or modify them under
#  the terms of the GNU Library General Public License as published by the Free
#  Software Foundation; either version 2 of the License, or (at your
#  option) any later version.
#    
#  The PCthreads (tm) package is distributed in the hope that it will
#  be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Library General Public License for more details.
#    
#  You should have received a copy of the GNU Library General Public
#  License along with this library (see the file COPYING.LIB); if not,
#  write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
#  MA 02139, USA.
#    
#  To report bugs, bug fixes, or provide feedback you may contact the
#  author, Michael T. Peterson, at either of the two email addresses listed
#  below:
#    
#                 mtp@big.aa.net (Preferred)
#                 mtp@zso.dec.com
#    
#    
#  Michael T. Peterson
#  Redmond, WA.
#  12 January, 1996
############################################################################
# $Log: Makefile,v $
# Revision 1.1.1.1  1996/06/29 01:20:53  mtp
# pthreads 1.0 distribution
#
# Revision 1.1.1.1  1996/06/28 15:45:41  mtp
# Official V1.0 Sources
#
# Revision 2.0  1996/06/28 14:58:12  mtp
# + Release 2.0
#
# Revision 1.2  1996/01/14 18:04:53  mtp
# + Added copyright and permission notice.
#
# Revision 1.1.1.1  1995/12/16 21:42:00  mtp
# Placed under CVS control
#
############################################################################
include ../Rules.lib

PUBHDRS    = ./pthread.h ./typedefs.h ../private/private.h

all: ${PUBLIC_OBJS}

${OBJDIR}/pthread_signal.o: pthread_signal.h ${PUBHDRS}
${OBJDIR}/pthread.o: ${PUBHDRS}
${OBJDIR}/pthread_attr.o: ${PUBHDRS}
${OBJDIR}/pthread_mutexattr.o: ${PUBHDRS}
${OBJDIR}/pthread_mutex.o: ${PUBHDRS}
${OBJDIR}/pthread_global_mutex.o: ${PUBHDRS}
${OBJDIR}/pthread_condv.o: ${PUBHDRS}
${OBJDIR}/pthread_condattr.o: ${PUBHDRS}
${OBJDIR}/pthread_cancel.o: ${PUBHDRS}
${OBJDIR}/pthread_key.o: ${PUBHDRS}
${OBJDIR}/pthread_utils.o: ${PUBHDRS}

clobber: clean
	@echo + removed public objects from ${OBJDIR}
	@rm -f ${PUBLIC_OBJS}
clean:
	@rm -f *.bak *.rem *.o out *~ *.a
