makefile
来自「采用非对称密钥加密方式的应用系统认证系统」· 代码 · 共 58 行
TXT
58 行
# 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 + =
减小字号Ctrl + -
显示快捷键?