makefile

来自「ftam等标准协议服务器和客户端的源代码。」· 代码 · 共 82 行

TXT
82
字号
################################################################################   Instructions to Make, for compilation of QUIPU user interface programs################################################################################################################################################################ $Header: /xtel/isode/isode/others/quipu/uips/RCS/Makefile,v 9.0 1992/06/16 12:44:16 isode Rel $### $Log: Makefile,v $# Revision 9.0  1992/06/16  12:44:16  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	=	dishOTHERS  =	fred pod sd manage de doog################################################################### 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); \		    doneeverything:;	@for i in $(DIRS) $(OTHERS); \		    do (echo "cd $$i; $(MAKE) all"; \			      cd $$i; $(MAKE) all); \		    doneinst-everything:;	@for i in $(DIRS) $(OTHERS); \		    do (echo "cd $$i; $(MAKE) inst-all"; \			      cd $$i; $(MAKE) inst-all); \		    donelint:;		@for i in $(DIRS); \		    do (echo "cd $$i; $(MAKE) lint"; \			      cd $$i; $(MAKE) lint); \		    donelint-everything:;	@for i in $(DIRS) $(OTHERS); \		    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 + -
显示快捷键?