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

📄 makefile

📁 SecuDe是一个由安全应用程序接口组成,对验证机制、证件处理、PEM、X.400报文处理和密钥管理提供支持。SecuDe提供DES、 RSA杂凑函数、密钥生成以及数字签名的生成和核实等多种密码机制。
💻
字号:
##########################################################################                                                                       ##  Projectname          :       STAPAC                                  ##                                                                       ##  Date                 :       November 1990                           ##                                                                       ##  Author               :       L. Eckstein                             ##                                                                       ##  Programmname         :       Makefile                                ##				create libary Slibsm			##				The source files are compiled with the  ##				option STREAM				##                                                                       ##  Description          :       this makefile generates the             ##                               - sctint.o                              ##                               - sctloc.o                              ##                               - sctmem.o                              ##                               - sccom.o                               ##				- sta_init.o				##				- sta_rand.o				##				- stadev.o				##				- stasc.o				##				- sta_r_w.o				##				- staauth.o				##				- stacrypt.o				##				- staprint.o				##				- sta_free.o				##				- sta_resp.o				##				- sta_xdmp.o				##									##                                                                       ##  Important            :                                               ##  Set Environment Varibale STAMOD:                                     ##  under DOS     : set STAMOD=filename      (../install/ustamod.gen)    ##  under C-SHELL : setenv STAMOD filename                               ##  Length of Filename : max 40 characters.                              ##                                                                       ##                                                                       ##  DFLAGS = MEM  STREAM SYSTEM  MEMTRACE (for sctint.c)                 ##      MEM    = MALLOC   : must be always set                           ##									##      STREAM =      : if not set => no TRACE of SCT-APDU               ##                      if set     => Trace of SCT-APDU's in file        ##                                    SCTINT.TRC                         ##      SYSTEM =								##           DOS      : if set     => compute baudrate for DOS           ##           BSD      : if set     => compute baudrate for Berkley       ##           SYSTEMV  : if set     => compute baudrate for System V      ##									##      MEMTRACE =    : if not set => no TRACE of element                ##                      if set     => Trace of element    in file        ##                                    SCTINT.TRC                         ##				     (only allowed, if STREAM set )     ##  DFLAGS = MEM  STREAM SYSTEM      (for sctloc.c)                      ##      MEM    = MALLOC   : must be always set                           ##									##      STREAM =      : if not set => no TRACE of SCT-APDU               ##                      if set     => Trace of SCT-APDU's in file        ##                                    SCTINT.TRC                         ##      SYSTEM =								##           DOS      : if set     => Systemcall TIME will be used       ##                      if not set => Systemcall SLEEP will be used      ##                                                                       ##                                                                       ##  DFLAGS = MEM  TRACE  SYSTEM     (for sctmem.c)                       ##      MEM    = MALLOC   : must be always set                           ##									##      TRACE  =      : if not set => no trace of memory-element         ##                      if set     => Trace of memory-element on terminal##      SYSTEM =								##           DOS      : if set     => compute baudrate for DOS           ##           BSD      : if set     => compute baudrate for Berkley       ##           SYSTEMV  : if set     => compute baudrate for System V      ##                                                                       ##                                                                       ##  DFLAGS = MEM STREAM              (for sccom.c )                      ##      MEM    = MALLOC   : must be always set                           ##									##      STREAM =      : if not set => Trace of SC-APDU                   ##                      if set     => Trace of SC-APDU's in file         ##                                    SCCOM.TRC                          ##                                                                       ##                                                                       ##                                                                       ##                                                                       ##  DFLAGS = VERSION10  RSA         (for stacrypt.c)                     ##      VERSION10  =  : padding of hash-string and signature		##									##      RSA    =      							##          ASSEMBLER : if set, then sca_sign, sca_verify  and           ##                      sca_hash are compiled => assembler routines are  ##                      used for hash function sqmodn                    #	#                                                                       ##  DFLAGS = TEST               (for stadev.o stasc.o sta_r_w.o          ##                                   staauth.o stacrypt.o staprint.o)    ##      TEST =								##           TEST      : if set => test output                           ##                                                                       ##                                                                       ##  DFLAGS = TRACE              (for sta_free.c)                         ##           TRACE    : if not set => no TEST output                     ##                      if set     => TEST output                        ##########################################################################MEM       =  MALLOC          # malloc is usedSYSTEM    =  BSD             # BSD ; DOS; SYSTEMVRSA	  =  ASSEMBLER	     #   VERSION10 =  VERSION10TEST      =  # -DTEST            STREAM    =  #-DSTREAM          # for test purposeMEMTRACE  =  # -DMEMTRACE       TRACE     =  #-DTRACEPROCDAT   = -DPROCDAT#DFLAGS    =DSCA = SPECIALS    =  -D$(MEM)  -D$(SYSTEM)  -D$(RSA) -D$(VERSION10) $(PROCDAT) $(STREAM) $(TEST) $(MEMTRACE) $(TRACE)OBJS       =  sctint.o sctloc.o sctmem.o \              sccom.o \	      sta_free.o sta_xdmp.o sta_resp.o \              stadev.o \              stasc.o sta_r_w.o staauth.o stacrypt.o staprint.oDD         = ../all: $(LIBSECUDE)trace:	; make "OPT=$(OPT) -DTRACE"

⌨️ 快捷键说明

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