vote up 0 vote down star

I'm trying to append some text to a variable in a Makefile for HP-UX's version of make.

If i use the "normal" appender, like this:

CFLAGS+=some text

$(CFLAGS) comes out empty.

If i reference the variable, like this:

CFLAGS=$(CFLAGS) some text

make complains about "infinitely recursive macro."

Using a temporary variable like this:

CFLAGStmp=$(CFLAGS)
CFLAGS=$(CFLAGStmp) some text

also complains about an "infinitely recursive macro."

How can i append something to a variable in HP-UX make's Makefile?

flag
I don't have access to HP-Make, so I can't experiment, but I'd try 1) fiddling with the whitespace, 2) using simple assignment := if HP-make allows it, or best of all 3) switching to GNUmake – Beta Sep 9 at 14:43
@Beta 1) Does not help. 2) Syntax error. 3) Not the ideal solution, but might be only one. – Martin Olsen Sep 10 at 7:17

1 Answer

vote up 0 vote down check

Unfortunately it seems that the only solution to this problem is to use GNU make (gmake).

link|flag

Your Answer

Get an OpenID
or

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