makefile
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 代码 · 共 57 行
TXT
57 行
# @(#)Makefile 4.1 ULTRIX 7/17/90#DESTROOT =SUBDIR = src/f77 src/f77pass1 src/f1all: ${SUBDIR}${SUBDIR}: /tmp cd $@; make ${MFLAGS}install: -if [ ! -d ${DESTROOT}/usr/ucb ] ;\ then \ mkdir ${DESTROOT}/usr/ucb; \ /etc/chown root ${DESTROOT}/usr/ucb; \ chgrp system ${DESTROOT}/usr/ucb; \ chmod 0755 ${DESTROOT}/usr/ucb ; \ else true ; \ fi for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} DESTROOT=${DESTROOT} install); donetools2: -if [ ! -d ${DESTROOT}/usr/ucb ] ;\ then \ mkdir ${DESTROOT}/usr/ucb; \ /etc/chown root ${DESTROOT}/usr/ucb; \ chgrp system ${DESTROOT}/usr/ucb; \ chmod 0755 ${DESTROOT}/usr/ucb ; \ else true ; \ fi for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} DESTROOT=${DESTROOT} install); donecleanvax clean: for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); doneclobber: for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clobber); done (cd include; rm -f *.h); rm -f Makefilesccsinfo: sccs info for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} sccsinfo); done (cd include; sccs info); sccsget: sccs get Makefile for i in ${SUBDIR}; do (cd $$i;sccs get Makefile; make ${MFLAGS} sccsget); done (cd include; sccs get SCCS); depend: for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} depend); done
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?