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

📄 makefile

📁 本代码是SHA1用C语言实现的源代码
💻
字号:
## OpenSSL/crypto/sha/Makefile#DIR=    shaTOP=    ../..CC=     ccCPP=    $(CC) -EINCLUDES=CFLAG=-gMAKEFILE=       MakefileAR=             ar rSHA1_ASM_OBJ=CFLAGS= $(INCLUDES) $(CFLAG)ASFLAGS= $(INCLUDES) $(ASFLAG)AFLAGS= $(ASFLAGS)GENERAL=MakefileTEST=shatest.c sha1test.c sha256t.c sha512t.cAPPS=LIB=$(TOP)/libcrypto.aLIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c sha256.c sha512.cLIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o sha256.o sha512.o $(SHA1_ASM_OBJ)SRC= $(LIBSRC)EXHEADER= sha.hHEADER= sha_locl.h $(EXHEADER)ALL=    $(GENERAL) $(SRC) $(HEADER)top:	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)all:    liblib:    $(LIBOBJ)	$(AR) $(LIB) $(LIBOBJ)	$(RANLIB) $(LIB) || echo Never mind.	@touch lib# ELFsx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)s512sse2-elf.s:	asm/sha512-sse2.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) sha512-sse2.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)# COFFsx86-cof.s: asm/sha1-586.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) sha1-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)s512sse2-cof.s:     asm/sha512-sse2.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) sha512-sse2.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)# a.outsx86-out.s: asm/sha1-586.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) sha1-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)s512sse2-out.s:     asm/sha512-sse2.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) sha512-sse2.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)sha1-ia64.s:   asm/sha1-ia64.pl	(cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@sha256-ia64.s: asm/sha512-ia64.pl	(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))sha512-ia64.s: asm/sha512-ia64.pl	(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))files:	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFOlinks:	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)install:	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \	do  \	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \	done;tags:	ctags $(SRC)tests:lint:	lint -DLINT $(INCLUDES) $(SRC)>fluffdepend:	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)dclean:	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new	mv -f Makefile.new $(MAKEFILE)clean:	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff# DO NOT DELETE THIS LINE -- make depend depends on it.sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.hsha1_one.o: ../../include/openssl/opensslconf.hsha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.hsha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.hsha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.hsha1_one.o: sha1_one.csha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.hsha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.hsha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.hsha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.hsha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.hsha256.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.hsha256.o: ../../include/openssl/sha.h ../../include/openssl/stack.hsha256.o: ../../include/openssl/symhacks.h ../md32_common.h sha256.csha512.o: ../../e_os.h ../../include/openssl/bio.hsha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.hsha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.hsha512.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.hsha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.hsha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.hsha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.hsha512.o: ../cryptlib.h sha512.csha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.hsha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.hsha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.hsha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.hsha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.hsha_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.hsha_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.hsha_one.o: ../../include/openssl/symhacks.h sha_one.c

⌨️ 快捷键说明

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