⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rules.prg

📁 刻录光盘的程序
💻 PRG
字号:
#ident "@(#)rules.prg	1.11 99/11/06 "############################################################################ Written 1996 by J. Schilling############################################################################# Generic rules for program names############################################################################# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; see the file COPYING.  If not, write to# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.############################################################################# This file holds definitions that are common to all architectures.# It should be included first and then partially overwritten,# if the current architecture requires some changes.############################################################################CLEAN_FILES=	core errSHELL=		/bin/shLN=		/bin/lnSYMLINK=	/bin/ln -sRM=		/bin/rmMV=		/bin/mvLORDER=		lorderTSORT=		tsortCTAGS=		vctagsETAGS=		etagsUMASK=		umask $(UMASK_VAL)UMASK_DEF=	002RM_FORCE=	-fRM_RECURS=	-rRM_RF=		$(RM_RECURS) $(RM_FORCE)RM_F=		$(RM) $(RM_FORCE)INSMODE_DEF=	755INSUSR_DEF=	binINSGRP_DEF=	bin_DEFUMASK=	$(_UNIQ)$(DEFUMASK)__DEFUMASK=	$(_DEFUMASK:$(_UNIQ)=$(UMASK_DEF))UMASK_VAL=	$(__DEFUMASK:$(_UNIQ)%=%)_DEFINSMODE=	$(_UNIQ)$(DEFINSMODE)__DEFINSMODE=	$(_DEFINSMODE:$(_UNIQ)=$(INSMODE_DEF))INSMODE=	$(__DEFINSMODE:$(_UNIQ)%=%)_DEFINSUSR=	$(_UNIQ)$(DEFINSUSR)__DEFINSUSR=	$(_DEFINSUSR:$(_UNIQ)=$(INSUSR_DEF))INSUSR=		$(__DEFINSUSR:$(_UNIQ)%=%)_DEFINSGRP=	$(_UNIQ)$(DEFINSGRP)__DEFINSGRP=	$(_DEFINSGRP:$(_UNIQ)=$(INSGRP_DEF))INSGRP=		$(__DEFINSGRP:$(_UNIQ)%=%)LD=		@echo "	==> LINKING   \"$@\""; ldLOCALIZE=	@echo "	==> LOCALIZING \"$@\""; $(RM_F) $@; cpINSTALL=	@echo "	==> INSTALLING \"$@\""; sh $(SRCROOT)/conf/install-sh -c -m $(INSMODE) -o $(INSUSR) -g $(INSGRP)CHMOD=		@echo "	==> SEETING PERMISSIONS ON \"$@\""; chmodCHOWN=		@echo "	==> SETTING OWNER ON \"$@\""; chownCHGRP=		@echo "	==> SETTING GROUP ON \"$@\""; chgrpAR=		@echo "	==> ARCHIVING  \"$@\""; ar#YACC=		@echo "	==> YACCING \"$@\""; yacc#LEX=		@echo "	==> LEXING \"$@\""; lex#AWK=		@echo "	==> AWKING \"$@\""; awkMKDEP=		@echo "	==> MAKING DEPENDENCIES \"$@\""; makedependMKDEP_OUT=	-f -MKDIR=		@echo "	==> MAKING DIRECTORY \"$@\""; $(UMASK); mkdirMKDIR_SH=	@echo "	==> MAKING DIRECTORY \"$@\""; $(UMASK); sh $(SRCROOT)/conf/mkdir-sh

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -