upd05

来自「开放源码的编译器open watcom 1.6.0版的源代码」· 代码 · 共 33 行

TXT
33
字号
#
#   test single-colon dependent append
#


all : setup upd05a upd05b clean .symbolic
    @%null

setup : .symbolic
    @%null

clean : .symbolic
    @rm -f upd05a upd05a1 upd05a2 upd05b upd05b1 upd05b2 > tmpfile.tmp
    rm tmpfile.tmp

upd05a : upd05a1
upd05a : upd05a2
    if not exist upd05a1 $(mkerr)
    if not exist upd05a2 $(mkerr)
    wtouch upd05a

upd05b : upd05b1
    if not exist upd05b1 $(mkerr)
    if not exist upd05b2 $(mkerr)
    wtouch upd05b
upd05b : upd05b2


upd05a1 upd05a2 upd05b1 upd05b2 :
    wtouch $^@
    echo wtouch $^@

⌨️ 快捷键说明

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