# $Id: Makefile,v 1.1.1.1 1996/06/29 01:20:51 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:51  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:57:58  mtp
# + Release 2.0
#
# Revision 1.2  1996/01/14 18:04:22  mtp
# + Added copyright and permission notice.
#
# Revision 1.1.1.1  1995/12/16 21:41:59  mtp
# Placed under CVS control
#
############################################################################
include ../Rules.lib

all: ${PRIVATE_OBJS}

${OBJDIR}/stack_cache.o: stack_cache.h stack.h private.h
${OBJDIR}/sigwait.o: sigwait.h private.h
${OBJDIR}/wait_block.o: wait_block.h private.h
${OBJDIR}/error.o: nub.h thread.h private.h
${OBJDIR}/timer_q.o: timer_q.h private.h
${OBJDIR}/handle.o: thread.h mutex.h condv.h private.h
${OBJDIR}/cleanup.o: cleanup.h private.h
${OBJDIR}/init.o: clock.h thread.h mutex.h condv.h private.h
${OBJDIR}/nub.o: nub.h machdep.h stack.h thread.h priority_q.h private.h
${OBJDIR}/objects.o: thread.h mutex.h condv.h private.h
${OBJDIR}/priority_q.o: priority_q.h thread.h private.h
${OBJDIR}/posix_signal.o: posix_signal.h private.h
${OBJDIR}/stack.o: stack.h stack_cache.h private.h
${OBJDIR}/mutex_pools.o: pools.h mutex.h private.h
${OBJDIR}/thread_pools.o: pools.h thread.h private.h
${OBJDIR}/condv_pools.o: pools.h condv.h private.h
${OBJDIR}/clock.o: clock.h machdep.h private.h
${OBJDIR}/delay.o: delay.h private.h
${OBJDIR}/dbgmem.o: dbgmem.h
${OBJDIR}/config.o: config.c config.h
${OBJDIR}/parse.o: parse.c config.h

clobber: clean
	@echo + removed private objects from ${OBJDIR}
	@rm -f ${PRIVATE_OBJS}
clean:
	@rm -f *.o *.bak *.rem foo* out *~
