|
From: | agnonchik |
Subject: | (no subject) |
Date: | Tue, 8 Aug 2006 16:15:57 +0400 (MSD) |
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.
[Prev in Thread] | Current Thread | [Next in Thread] |