#              This file is part of the New World OS project
#                 Copyright (C) 2005, 2006  QRW Software
#            J. Scott Edwards - j.scott.edwards.nwos@gmail.com 
#                       http://www.qrwsoftware.com
#                       http://nwos.sourceforge.com
# 
#  NWOS is free software;  you can redistribute it and/or modify it under the
#  terms of the GNU General Public License  as published by the Free Software
#  Foundation; either version 2, or (at your option) any later version.  This
#  software is distributed with 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 General Public License for
#  more  details.  You should have received a copy  of the GNU General Public
#  License along with this package;  see the file COPYING.  If not, write to:
# 
#       Free Software Foundation, Inc.
#       59 Temple Place - Suite 330
#       Boston, MA 02111-1307, USA.
# 
#  $Log: Makefile,v $
#  Revision 1.1  2007/01/14 22:12:20  jsedwards
#  Created from md5/Makefile.
#
#

CFLAGS=-Wall -g

all:  sha1.o

sha1.o: md5.h sha1.h sha1.c 
	gcc ${CFLAGS} -DHAVE_STDINT_H -c sha1.c

clean:
	rm -f *.o

