Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a target inside a makefile:

all: $(TARGETS)

I want a variant that differs from all only by the fact that it sets an environment variable. Something like:

all-abc: $(TARGETS)
    ABC=123

but that doesn't work because the dependencies are processed before the variable is set. I've thought about having another dependency before the real ones that just sets the environment variable but I don't think the environment persists across targets. That is to say that

abc:
    ABC=123
all-abc: abc $(TARGETS)

doesn't work. What I ultimately want to be able to do is

$ make all-abc

instead of

$ ABC=123 make

Is it possible to set an environment variable like this ?

(GNU Make 3.82)

share|improve this question
What's wrong with make all ABC=123? – Beta Mar 5 at 17:51
1  
prefer not to have to worry about the values to set the variables to (i.e. in the example I don't want to have to remember 123) – starfry Mar 5 at 18:09

1 Answer

up vote 3 down vote accepted

try this:

all:
    @#usual rule, if you call `make all-abc`, this will print "123"
    @echo $(ABC)

all-abc: ABC=123
all-abc: all
    @#what you put here it's going to be executed after the rule `all`
share|improve this answer
yes that's good. I didn't think of adding two targets with the same name. Good one! – starfry Mar 5 at 18:13
1  
starfry: I don't think you're understanding what this does exactly. You should read the section of the GNU make manual on target-specific variables. – MadScientist Mar 6 at 12:59
1  
To add to what @MadScientist said: there are not two targets with the same name here. "all-abc: ABC=123" defines a target-specific variable; it is not a target. gnu.org/software/make/manual/html_node/Target_002dspecific.html – James Moore Apr 4 at 21:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.