Hi,
> I suggest you check out $(filter ) and $(filter-out ) built-in functions
> in the GNU make manual.
thanks for the hint. I know of these functions, but i can't use them
here:
LL := a.c b.cs c.ls
L_C := $(filter %.c,$(LL))
all:
echo $(L_C)
The Makefile above shows "a.c", but not "b.cs". If i use the pattern
"%.%c%", i don't get any output. I'd like to get the files whose
ending _contains_ a "c".
Do you have another hint?
Best regards,
Torsten.
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make