# $Id: Makefile,v 1.1.1.1 1996/06/29 01:20:50 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:50  mtp
# pthreads 1.0 distribution
#
# Revision 1.1.1.1  1996/06/28 15:45:40  mtp
# Official V1.0 Sources
#
# Revision 2.0  1996/06/28 14:57:43  mtp
# + Release 2.0
#
# Revision 1.2  1996/01/14 18:03:42  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

MACHDEP_HDR = ${PRVDIR}/machdep.h

ifeq (${ISELF},yes)
CFLAGS  += -D_ELF_
endif

all: ${OBJDIR}/machdep.o

${OBJDIR}/machdep.o: machdep.S ${MACHDEP_HDR}

clobber: clean
	@echo + removed ${OBJDIR}/machdep.o
	@rm -f ${OBJDIR}/machdep.o ${OBJDIR}/machdep.o

clean:
	@rm -f *.o *.bak *.rem *gifile *.s



