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

📄 makefile.ssl

📁 一个用于点对点传输加密的工具包源码
💻 SSL
字号:
## SSLeay/crypto/des/Makefile#DIR=	desTOP=	../..CC=	ccCPP=	$(CC) -EINCLUDES=-I../../includeCFLAG=-gINSTALL_PREFIX=OPENSSLDIR=     /usr/local/sslINSTALLTOP=/usr/local/sslMAKE=		make -f Makefile.sslMAKEDEPEND=	$(TOP)/util/domd $(TOP)MAKEFILE=	Makefile.sslAR=		ar rRANLIB=		ranlibDES_ENC=	des_enc.o fcrypt_b.o# or use#DES_ENC=	dx86-elf.o yx86-elf.oCFLAGS= $(INCLUDES) $(CFLAG)GENERAL=MakefileTEST=destest.cAPPS=LIB=$(TOP)/libcrypto.aLIBSRC=	cbc_cksm.c cbc_enc.c  cfb64enc.c cfb_enc.c  \	ecb3_enc.c ecb_enc.c  enc_read.c enc_writ.c \	fcrypt.c ofb64enc.c ofb_enc.c  pcbc_enc.c \	qud_cksm.c rand_key.c read_pwd.c rpc_enc.c  set_key.c  \	des_enc.c fcrypt_b.c read2pwd.c \	xcbc_enc.c \	str2key.c  cfb64ede.c ofb64ede.c ede_cbcm_enc.cLIBOBJ= set_key.o  ecb_enc.o  cbc_enc.o \	ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o  ofb64ede.o \	enc_read.o enc_writ.o ofb64enc.o \	ofb_enc.o  str2key.o  pcbc_enc.o qud_cksm.o rand_key.o \	${DES_ENC} read2pwd.o \	fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o  cbc_cksm.o \	ede_cbcm_enc.oSRC= $(LIBSRC)EXHEADER= des.hHEADER=	des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)ALL=    $(GENERAL) $(SRC) $(HEADER)top:	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)all:	liblib:	$(LIBOBJ)	$(AR) $(LIB) $(LIBOBJ)	$(RANLIB) $(LIB)	@touch libdes: des.o cbc3_enc.o lib	$(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)# elfasm/dx86-elf.o: asm/dx86unix.cpp	$(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.oasm/yx86-elf.o: asm/yx86unix.cpp	$(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o# solarisasm/dx86-sol.o: asm/dx86unix.cpp	$(CC) -E -DSOL asm/dx86unix.cpp | sed 's/^#.*//' > asm/dx86-sol.s	as -o asm/dx86-sol.o asm/dx86-sol.s	rm -f asm/dx86-sol.sasm/yx86-sol.o: asm/yx86unix.cpp	$(CC) -E -DSOL asm/yx86unix.cpp | sed 's/^#.*//' > asm/yx86-sol.s	as -o asm/yx86-sol.o asm/yx86-sol.s	rm -f asm/yx86-sol.s# a.outasm/dx86-out.o: asm/dx86unix.cpp	$(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.oasm/yx86-out.o: asm/yx86unix.cpp	$(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o# bsdiasm/dx86bsdi.o: asm/dx86unix.cpp	$(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.oasm/yx86bsdi.o: asm/yx86unix.cpp	$(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.oasm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl	(cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp)asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl	(cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp)files:	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFOlinks:	@$(TOP)/util/point.sh Makefile.ssl Makefile	@$(TOP)/util/point.sh ../../perlasm asm/perlasm	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)install: installsinstalls:	@for i in $(EXHEADER) ; \	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:	$(MAKEDEPEND) $(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 asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff# DO NOT DELETE THIS LINE -- make depend depends on it.cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hcbc_cksm.o: ../../include/openssl/opensslconf.h des_locl.hcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h ncbc_enc.ccfb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hcfb64ede.o: ../../include/openssl/opensslconf.h des_locl.hcfb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hcfb64enc.o: ../../include/openssl/opensslconf.h des_locl.hcfb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hcfb_enc.o: ../../include/openssl/opensslconf.h des_locl.hdes_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hdes_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_locl.h ncbc_enc.cecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hecb3_enc.o: ../../include/openssl/opensslconf.h des_locl.hecb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.hecb_enc.o: des_locl.h spr.hede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hede_cbcm_enc.o: ../../include/openssl/opensslconf.h des_locl.henc_read.o: ../../include/openssl/bio.h ../../include/openssl/buffer.henc_read.o: ../../include/openssl/crypto.h ../../include/openssl/des.henc_read.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.henc_read.o: ../../include/openssl/err.h ../../include/openssl/lhash.henc_read.o: ../../include/openssl/opensslconf.henc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.henc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.henc_read.o: ../cryptlib.h des_locl.henc_writ.o: ../../include/openssl/bio.h ../../include/openssl/buffer.henc_writ.o: ../../include/openssl/crypto.h ../../include/openssl/des.henc_writ.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.henc_writ.o: ../../include/openssl/err.h ../../include/openssl/lhash.henc_writ.o: ../../include/openssl/opensslconf.henc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.henc_writ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.henc_writ.o: ../../include/openssl/symhacks.h ../cryptlib.h des_locl.hfcrypt.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hfcrypt.o: ../../include/openssl/opensslconf.h des_locl.hfcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hfcrypt_b.o: ../../include/openssl/opensslconf.h des_locl.hofb64ede.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hofb64ede.o: ../../include/openssl/opensslconf.h des_locl.hofb64enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hofb64enc.o: ../../include/openssl/opensslconf.h des_locl.hofb_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hofb_enc.o: ../../include/openssl/opensslconf.h des_locl.hpcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hpcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.hqud_cksm.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hqud_cksm.o: ../../include/openssl/opensslconf.h des_locl.hrand_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hrand_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/rand.hread2pwd.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hread2pwd.o: ../../include/openssl/opensslconf.h des_locl.hread_pwd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.hread_pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.hread_pwd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.hread_pwd.o: ../../include/openssl/err.h ../../include/openssl/lhash.hread_pwd.o: ../../include/openssl/opensslconf.hread_pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.hread_pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.hread_pwd.o: ../cryptlib.h des_locl.hrpc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hrpc_enc.o: ../../include/openssl/opensslconf.h des_locl.h des_ver.h rpc_des.hset_key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hset_key.o: ../../include/openssl/opensslconf.h des_locl.hstr2key.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hstr2key.o: ../../include/openssl/opensslconf.h des_locl.hxcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/e_os2.hxcbc_enc.o: ../../include/openssl/opensslconf.h des_locl.h

⌨️ 快捷键说明

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