📄 makefile
字号:
## OpenSSL/crypto/idea/Makefile#DIR= ideaTOP= ../..CC= ccINCLUDES=CFLAG=-gMAKEFILE= MakefileAR= ar rCFLAGS= $(INCLUDES) $(CFLAG)GENERAL=MakefileTEST=ideatest.cAPPS=LIB=$(TOP)/libcrypto.aLIBSRC=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.cLIBOBJ=i_cbc.o i_cfb64.o i_ofb64.o i_ecb.o i_skey.oSRC= $(LIBSRC)EXHEADER= idea.hHEADER= idea_lcl.h $(EXHEADER)ALL= $(GENERAL) $(SRC) $(HEADER)top: (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)all: liblib: $(LIBOBJ) $(ARX) $(LIB) $(LIBOBJ) $(RANLIB) $(LIB) || echo Never mind. @touch libfiles: $(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 *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff# DO NOT DELETE THIS LINE -- make depend depends on it.i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.hi_cbc.o: i_cbc.c idea_lcl.hi_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.hi_cfb64.o: i_cfb64.c idea_lcl.hi_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.hi_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.hi_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.hi_ofb64.o: i_ofb64.c idea_lcl.hi_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.hi_skey.o: ../../include/openssl/fips.h ../../include/openssl/idea.hi_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.hi_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.hi_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.hi_skey.o: i_skey.c idea_lcl.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -