📄 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 + -