Dear GNU make experts, Do you know why
> default: > g=$(basename file.ext); \ > /bin/echo g=$$g; produces "g=file", while > default: > f=file.ext; \ > g=$(basename $$f); \ > /bin/echo g=$$g; "g=file.ext". How to extract the basename of $f in the second case? Thank you in advence, Val. _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
