makefile.ship
来自「可以实现对邮件的加密解密以及签名」· SHIP 代码 · 共 30 行
SHIP
30 行
#
# Copyright (C) 2002 PGP Corporation
#
# To run properly, a key called <test@pgp.com> with passphrase "test" must
# be available in the keyring. This key is already in the keyfiles in test/.
#
# You must also set your PGPPATH environment variable to "." so the keyfiles
# will be found.
#
CC=gcc
PROG = ../pgpTest
INSTALLPROGS = $(PROG)
OBJS = pgpTestMain.o pgpTestCipherFeedback.o pgpTestHash.o \
pgpTestKeys.o pgpTestSymmetricCipher.o pgpTestEncode.o \
pgpUnixTestMain.o
LIBS = ../../libs/libPGPsdk.a -lm
CFLAGS= -I../../unix -I../include
LDFLAGS=
all:: $(PROG)
# Compile program, PROG
$(PROG): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?