#              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.3  2006/11/11 12:29:20  jsedwards
#  Update e-mail address to something that works.
#
#  Revision 1.2  2006/10/26 01:51:30  jsedwards
#  Merged alpha_05_branch back into main trunk.
#
#  Revision 1.1.2.1  2006/08/24 12:43:17  jsedwards
#  Initial version.
#
#

CFLAGS=-Wall -g

all:  md5c.o test_md5

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

test_md5: md5c.o test_md5.c
	gcc ${CFLAGS} -o test_md5 test_md5.c md5c.o

clean:
	rm -f *.o test_md5

