📄 makefile
字号:
## SSLeay/crypto/blowfish/Makefile#DIR= bfTOP= ../..CC= ccCPP= $(CC) -EINC=-I ../include CFLAG=-g -D__KERNEL__ -I/usr/src/linux/includeINSTALL_PREFIX=OPENSSLDIR= /usr/local/sslINSTALLTOP=/usr/local/sslMAKE= make -f Makefile.sslMAKEDEPEND= $(TOP)/util/domd $(TOP)MAKEFILE= Makefile.sslAR= ar rRANLIB= ranlibPERL= perlCFLAGS= $(INC) $(CFLAG).c.o: $(CC) $(CPPFLAGS) $(CFLAGS) $(INC) -c $< -o $@BF_ASM-i586 := bf-586.plBF_ASM-i686 := bf-686.plBF_ENC := bf_enc.oASM-$(ARCH_ASM):=1ASM_X86:=$(ASM-i586)$(ASM-i686)ifneq ($(strip $(ASM_X86)),) BF_ENC= asm/bx86-elf.o BF_ASM= $(BF_ASM-$(ARCH_ASM))endifGENERAL=MakefileTEST=bftest.cAPPS=LIB=libblowfish.aLIBSRC=bf_skey.c bf_enc.c LIBOBJ=bf_skey.o $(BF_ENC)SRC= $(LIBSRC)EXHEADER= blowfish.hHEADER= bf_pi.h bf_locl.h $(EXHEADER)ALL= $(GENERAL) $(SRC) $(HEADER)#top:# (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)all: liblib: $(LIB)$(LIB): $(LIBOBJ) $(AR) $(LIB) $(LIBOBJ) $(RANLIB) $(LIB)# elfasm/bx86-elf.o: asm/bx86unix.cpp $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o# solarisasm/bx86-sol.o: asm/bx86unix.cpp $(CC) -E -DSOL asm/bx86unix.cpp | sed 's/^#.*//' > asm/bx86-sol.s as -o asm/bx86-sol.o asm/bx86-sol.s rm -f asm/bx86-sol.s# a.outasm/bx86-out.o: asm/bx86unix.cpp $(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o# bsdiasm/bx86bsdi.o: asm/bx86unix.cpp $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.oasm/bx86unix.cpp: asm/$(BF_ASM) ../perlasm/x86asm.pl ../perlasm/cbc.pl (cd asm; $(PERL) $(BF_ASM) cpp $(PROCESSOR) >bx86unix.cpp)files: $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFOlinks: @$(TOP)/util/point.sh Makefile.ssl Makefile @$(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/bx86unix.cpp *.o asm/*.o *.obj $(LIB) tags core .pure .nfs* *.old *.bak fluff# DO NOT DELETE THIS LINE -- make depend depends on it.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -