#
#   wmake regression tests
#
#
#   20-Feb-90   D.J.Gaudet      Initial Implementation
#

#
#   .symbolic as an attribute of a target
#

#   .symbolic before dcolon
upd03xa.t :: .symbolic
upd03xa.t :: dep1
    @%null

#   .symbolic after dcolon
upd03xb.t :: dep1
    @%null
upd03xb.t :: .symbolic

#   .symbolic in between dcolon
upd03xc.t :: dep1
    @%null
upd03xc.t :: .symbolic
upd03xc.t :: dep2
    @%null

#   .symbolic before scolon
upd03xd.t : .symbolic
upd03xd.t : dep1
    @%null

#   .symbolic after scolon
upd03xe.t : dep1
    @%null
upd03xe.t : .symbolic

targs=upd03xa.t upd03xb.t upd03xc.t upd03xd.t upd03xe.t

dep1 dep2 : .symbolic
    @%null

all : $(targs) .symbolic
    @%null
