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

📄 makefile

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻
字号:
##	@(#)Makefile	4.1 (ULTRIX)7/2/90## Normal sequence of events is: clean clobber sccsget all install#DESTROOT=DESTDIR=${DESTROOT}/usr/sysTARDIRS=730cons 750cons 780cons 8200cons 8600consall:clean:	-for i in ${TARDIRS} ;do \		if [ -d $$i/. ]; then \			$(ECHO) "$$i:";cd $$i;$(MAKE) clean;cd ..;\		fi; \	doneclobber:	for i in ${TARDIRS} ; do \		$(ECHO) "$$i:";cd $$i;$(MAKE) clobber;cd ..;donesccsinfo:	-@for i in ${TARDIRS}; do \		$(ECHO) "$$i:";cd $$i;sccs info;cd .. ; donesccsget:	@-for i in ${TARDIRS};do \		$(ECHO) "$$i:";cd $$i;sccs get -s SCCS;cd ..;doneinstall: instdirs inst-730cons inst-750cons inst-780cons inst-8200cons \		inst-8600consinstdirs:	-if [ ! -d ${DESTDIR} ] ;\	then \		mkdir ${DESTDIR}; \		/etc/chown root ${DESTDIR}; \		chgrp system ${DESTDIR}; \		chmod 0755 ${DESTDIR}; \	else true; \	fi	@-for i in  ${TARDIRS} ; do \		if [ ! -d ${DESTDIR}/$$i ] ;\		then \			mkdir ${DESTDIR}/$$i; \			/etc/chown root ${DESTDIR}/$$i; \			chgrp system ${DESTDIR}/$$i; \			chmod 0755 ${DESTDIR}/$$i; \		else true; \		fi; doneinst-750cons:	@echo Installing 750cons files.	@cd 750cons;make ${MFLAGS} DESTROOT=${DESTROOT} installinst-8200cons:	@echo Installing 8200cons files.	@cd 8200cons;make ${MFLAGS} DESTROOT=${DESTROOT} installinst-780cons:	@echo Installing 780cons files.	@cd 780cons;make ${MFLAGS} DESTROOT=${DESTROOT} installinst-8600cons:	@echo Installing 8600cons	@cd 8600cons;make ${MFLAGS} DESTROOT=${DESTROOT} installinst-730cons: 	@echo Installing 730cons	@cd 730cons;make ${MFLAGS} DESTROOT=${DESTROOT} install

⌨️ 快捷键说明

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