makefile.txt

来自「哈希源程序代码」· 文本 代码 · 共 36 行

TXT
36
字号
# 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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?