home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-04-13 | 1.0 KB | 36 lines |
- # MD5 program used to create the checksums in the top-level file `checksums'.
- # This program is copyright RSA Data Security, Inc.
- #
- # This actual version is derived from the libraries and applications in
- # FreeBSD 2.2.6, but is given here in `standalone' format. It is known
- # to compile cleanly on FreeBSD 2.2.6 and Solaris 2.4. Fixes for other
- # platforms most welcome! Email them to wkt@cs.adfa.oz.au.
- #
- # The top-level checksums is generated by doing:
- #
- # % cd top-level
- # % find * -type f -print | xargs md5 > checksums
- #
- # You can do this to generate your own file, and then use diff or cmp to
- # verify that they are the same. You might need to sort your checksums and
- # the top-level checksums, just in case find(1) prints out the file list
- # in a different order.
- #
- # Warren Toomey
- #
-
- md5: md5.o md5c.o md5hl.o
- cc -o md5 md5.o md5c.o md5hl.o
-
- md5.o: global.h md5.c md5.h
- cc -c -O md5.c
-
- md5c.o: md5c.c md5.h global.h
- cc -c -O md5c.c
-
- md5hl.o: md5hl.c md5.h global.h
- cc -c -O md5hl.c
-
- clean:
- rm -f *.o core *.core md5
-