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

📄 makefile

📁 采用非对称密钥加密方式的应用系统认证系统
💻
字号:
# This is a makefile for cc compatible make.# May require alterations for some make programs.# HP-UX make may require file to be altered.# extension for object filesO = o# commandsCC = ccCPP = cppLIB = arASM = as# name of temporary library scriptTEMPFILE = $(TEMP)/temp.mak# standard include directorySTDINCDIR=/usr/include# The places to look for include files (in order).INCL =  -I. -I$(RSAEURODIR) -I$(STDINCDIR)# Extra Defs# utility routinesdel = rm COPY = cp# name of main executable to buildPROG = all# Normal C flags.CFLAGS = $(INCL) -O -c -DPROTOTYPES=0 -q32 -DUSA_ANSI=1 -qMAXMEM=4096MFLAGS = -I. -I$(RSAEURODIR)# The location of the common source directory.RSAEURODIR = ../source/RSAEUROLIB = rsaeuro.aRSAREFLIB = rsaref.a# The location of the demo source directory.RDEMODIR = ../rdemo/DEMODIR = ../demo/$(RSAREFLIB) : $(RSAEUROLIB)	$(COPY) $(RSAEUROLIB) $(RSAREFLIB)$(RSAEUROLIB) : desc.$(O) shsc.$(O) md2c.$(O) md4c.$(O) md5c.$(O) nn.$(O) prime.$(O)\	rsa.$(O) r_encode.$(O) r_dh.$(O) r_enhanc.$(O) r_keygen.$(O) r_random.$(O)\	r_stdlib.$(O)	$(LIB) -X32 -r $@ $?	ranlib $@include $(RSAEURODIR)targets.mak

⌨️ 快捷键说明

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