Closed ihh closed 11 months ago
The following Makefile...
TARGETS := $(foreach suffix,x y,$(addsuffix .$(suffix),a b c)) all: echo $(TARGETS)
...should yield the following result (same as GNU make)...
a.x b.x c.x a.y b.y c.y
Instead, $(suffix) is not expanded. This may occur in other nested filename functions too (I haven't checked).
$(suffix)
The following Makefile...
...should yield the following result (same as GNU make)...
Instead,
$(suffix)
is not expanded. This may occur in other nested filename functions too (I haven't checked).