📄 makefile.unx
字号:
# -----------------------------------------------------------------------------# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -