makefile
来自「Linux下的socks的程序源程序,用于socks的代理服务」· 代码 · 共 26 行
TXT
26 行
# Directory into which the man pages are to be installed.MAN_DEST_DIR = /usr/local/man# The 'install' command is assumed to be the BSD variety (using -m to# set the file mode). If the default 'install' on your system doesn't# do that, you have to either specify an alternative one in the line below# (e.g., /usr/ucb/install) or modify the other Makefile.INSTALL= install# UnixWare should use:#INSTALL=/usr/ucb/install# IRIX should use:#INSTALL=bsdinstall#========================================================install: for i in *.1; do \ $(INSTALL) -m 444 $$i $(MAN_DEST_DIR)/man1 ;\ done for i in *.5; do \ $(INSTALL) -m 444 $$i $(MAN_DEST_DIR)/man5 ;\ done for i in *.8; do \ $(INSTALL) -m 444 $$i $(MAN_DEST_DIR)/man8 ;\ done
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?