I want to do immediate expansion of a shell command within a Makefile, but I want the shell command to have access to the environment variables within the Makefile. If I us
What's wrong with this?
VAR1 := $(shell echo $(SOME_VAR)) VAR2 := $(shell echo $(VAR1))