up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question
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 '09 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 '09 at 7:17
feedback

1 Answer

up vote 0 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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