⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.txt

📁 哈希源程序代码
💻 TXT
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -