📄 makefile
字号:
## SSLeay/crypto/rc4/Makefile#DIR= rc4TOP= ../..CC= ccCPP= $(CC) -EINCLUDES=CFLAG=-gAR= ar rRC4_ENC=rc4_enc.oCFLAGS= $(INCLUDES) $(CFLAG)ASFLAGS= $(INCLUDES) $(ASFLAG)AFLAGS= $(ASFLAGS)GENERAL=MakefileTEST=rc4test.cAPPS=LIB=$(TOP)/libcrypto.aLIBSRC=rc4_skey.c rc4_enc.cLIBOBJ=rc4_skey.o $(RC4_ENC)SRC= $(LIBSRC)EXHEADER= rc4.hHEADER= $(EXHEADER) rc4_locl.hALL= $(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# ELFrx86-elf.s: asm/rc4-586.pl ../perlasm/x86asm.pl (cd asm; $(PERL) rc4-586.pl elf $(CFLAGS) > ../$@)# COFFrx86-cof.s: asm/rc4-586.pl ../perlasm/x86asm.pl (cd asm; $(PERL) rc4-586.pl coff $(CFLAGS) > ../$@)# a.outrx86-out.s: asm/rc4-586.pl ../perlasm/x86asm.pl (cd asm; $(PERL) rc4-586.pl a.out $(CFLAGS) > ../$@)rc4-x86_64.s: asm/rc4-x86_64.pl; $(PERL) asm/rc4-x86_64.pl $@rc4-ia64.s: asm/rc4-ia64.S @case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \ int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E asm/rc4-ia64.S > $@ ;; \ char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E asm/rc4-ia64.S > $@ ;; \ *) exit 1 ;; \ esacfiles: $(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.rc4_enc.o: ../../e_os.h ../../include/openssl/bio.hrc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.hrc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.hrc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.hrc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.hrc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.hrc4_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.hrc4_enc.o: ../cryptlib.h rc4_enc.c rc4_locl.hrc4_skey.o: ../../e_os.h ../../include/openssl/bio.hrc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.hrc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.hrc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.hrc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.hrc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.hrc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.hrc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -