all one two three : .symbolic

all : one two three
    @%make once
    @%make once
    @%make twice
    @%make twice

once    : .symbolic

twice   : .procedure

once twice :
!ifdef __UNIX__
    @echo "you should get this message $^@ ($<) ($[@ $]@)"
!else
    @echo you should get this message $^@ ($<) ($[@ $]@)
!endif



one two three :
    @%null

