# ----------------------------------------------------
# Test 04: DeMacro during different times
# ----------------------------------------------------

temp = HELLO
all: hello .symbolic
   echo $(temp)
temp = HELLO2
hello: .symbolic
   echo $(temp)
