home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / md5.lzh / MD5 / makefile < prev    next >
Makefile  |  1996-01-12  |  608b  |  23 lines

  1. # This makefile compiles the source code for the "RSA Data Security, Inc.
  2. # MD5 Message-Digest Algorithm" as found in RFC 1321.  That code is
  3. # copyrighted:
  4. #
  5. #    Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991.
  6. #    All rights reserved.
  7. #
  8. # See the source code for copyright restrictions.
  9. #
  10. # No "makefile" is provided in the RFC.
  11. # This one was updated for OSK by Dean Leiber (dean.leiber@support.com)
  12. CC = cc
  13. CFLAGS =  -r -dMD5 -dOSK
  14.  
  15. md5: md5c.r mddriver.r
  16.     $(CC)  md5c.r mddriver.r -fd=./md5
  17.  
  18. mddriver.r: global.h md5.h
  19.     $(CC) $(CFLAGS) mddriver.c
  20.  
  21. md5c.r: global.h md5.h
  22.     $(CC) $(CFLAGS)  md5c.c
  23.