makefile.unx
来自「Reference Implementation of G.711 standa」· UNX 代码 · 共 39 行
UNX
39 行
# -----------------------------------------------------------------------------# Unix makefile for compiling and testing the unsupported program pshar.# It is believed to be compatible with the Unix shar utility. Useful# for the MSDOS and VAX/VMS environments.# implementation. # create: create executable# unpack: extract (p)shar archives# repack: repack files# clean: delete unnecessary files# Implemented by <simao@cpqd.ansp.br> -- 01.May.94# -----------------------------------------------------------------------------.SUFFIXES: .txtCC = gccCC_OPT = -traditional -Wall -fno-builtinDIFF = diffall:: create unpak repack cleancreate: psharpshar: pshar.c $(CC) $(CC_OPT) -o pshar pshar.cunpak: pshar -u test.ori $(DIFF) file1.txt file1-o.txt $(DIFF) file2.txt file2-o.txt $(DIFF) file3.txt file3-o.txt $(DIFF) file4.txt file4-o.txt $(DIFF) file5.txt file5-o.txtrepack: pshar -f test.new file1.txt file2.txt file3.txt file4.txt file5.txt -$(DIFF) test.ori test.newclean: $(RM) file?.txt test.new
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?