makefile
来自「ftam等标准协议服务器和客户端的源代码。」· 代码 · 共 67 行
TXT
67 行
################################################################################ Instructions to Make, for compilation of QUIPU tools################################################################################################################################################################ $Header: /xtel/isode/isode/others/quipu/tools/RCS/Makefile,v 9.0 1992/06/16 12:43:52 isode Rel $### $Log: Makefile,v $# Revision 9.0 1992/06/16 12:43:52 isode# Release 8.0## ################################################################################################################################################################ NOTICE## Acquisition, use, and distribution of this module and related# materials are subject to the restrictions of a license agreement.# Consult the Preface in the User's Manual for the full terms of# this agreement.################################################################################DIRS = dsaconfig dsastats scripts dmtoolsOTHERS = # dsaconsole################################################################### Here it is...##################################################################all:; @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) all"; \ cd $$i; $(MAKE) all); \ doneinst-all:; @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) inst-all"; \ cd $$i; $(MAKE) inst-all); \ doneinstall:; @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) install"; \ cd $$i; $(MAKE) install); \ donelint:; @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) lint"; \ cd $$i; $(MAKE) lint); \ doneclean:; rm -f _* @for i in $(DIRS) $(OTHERS); \ do (echo "cd $$i; $(MAKE) clean"; \ cd $$i; $(MAKE) clean); \ donegrind:; @for i in $(DIRS); \ do (echo "cd $$i; $(MAKE) grind"; \ cd $$i; $(MAKE) grind); \ done
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?