📄 makefile
字号:
# Copyright (c) 1992 by Texas Internet Consulting# This code may be freely copied and used so long as this# copyright notice is attached. This code may not be sold# without the express written permission of Texas Internet Consulting.# Texas Internet Consulting makes no warranty as to the correctness# nor the applicability of this code for any purpose.PROGS= poke_nsSCRIPTS= gendns genstatic make_rev readinfo updatehostsTARGET=/usr/local/etcpoke_ns: poke_ns.c ${CC} -O poke_ns.c -o poke_nsinstall: ${SCRIPTS} poke_ns for f in ${SCRIPTS}; do \ install -m 775 $$f ${TARGET}/`basename $$f .sh`; done for f in ${PROGS}; do \ install -s -m 775 $$f ${TARGET}; done chown root ${TARGET}/poke_ns chmod 4710 ${TARGET}/poke_nsclean: rm -f ${PROGS} *.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -