I have a makefile that includes several other makefiles, which in turn all add to a variable like this:
VAR := Something SomethingElse VAR += SomeOtherThing (...)
Now I want to remove SomethingElse from the VAR variable. What am I doing instead of (...) for this?
I am using GNU Make, and GNU Make a specific solution will be fine.
variables makefile gnu-make
Bjarke Freund-Hansen Sep 13 '11 at 12:55 2011-09-13 12:55
source share