1
2deps:=hello.h
3.SECONDEXPANSION:
4.SECONDARY: hello.x
5all: hello.x
6hello.x: $$(deps); $(info $@)
7hello.h:; $(info $@)
1
2deps:=hello.h
3.SECONDEXPANSION:
4.SECONDARY: hello.x
5all: hello.x
6hello.x: $$(deps); $(info $@)
7hello.h:; $(info $@)