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

📄 makefile

📁 vc环境下的pgp源码
💻
字号:
##
##  Makefile for constructing the PGP command line package
##
##
##  PKGMK     - command string for making the package
##  PKG{NAME} - nominal name of the package
##  PSTAMP    - date of product creation
##

# This version is the actual version of the package, 
# it goes in the pkginfo file
PKGVERSION = 6.5.1i

DEST    := $(shell /bin/pwd)
PSTAMP  := $(shell /bin/date)

#
# Packages to build
# Add variables here if more packages are to be
# built.
#
PKGNAME=       PGPcmdln

#
# These are the prototype files used to build
# each package listed above.  The pkginfo files
# are also included in each prototype file.
#
PROTOFILE=     pgpcmdln.proto

#
# Assign proper arguments to pkgmk and pgktrans.
#
PKGMK   = /bin/pkgmk -o -d $(DEST) -p "$(PSTAMP)"
PKGTR   = /bin/pkgtrans -s $(DEST)

#
#  Works start here...
#

all: packages

packages:	FORCE
		$(PKGMK) -f $(PROTOFILE) PKG=$(PKGNAME) $(PKGNAME)

		$(PKGTR) pgpcmdln-sol-$(PKGVERSION) $(PKGNAME)

#
# Wipe out the packages only
#
clean:
		$(RM) -rf $(DEST)/$(PKGNAME)


FORCE:
#------------------------------------------------------
#
#  End of Makefile file for PGP 6.5.1i Solaris
#
#------------------------------------------------------

⌨️ 快捷键说明

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