現在、特定のディレクトリを見つけて最後のディレクトリ名を削除するように、メイクファイルで変数をコーディングしようとしています。現在、 ${variable} を echo すると正しく膨張しますが、 ${myvar} を echo するとまったく膨張しません! また!「変数:=など」を使用すると、「./source/Top」ではなく「./Top」に膨らみます
DESIRED FLOW:
variable = `find /username/mcarlis -maxdepth 2 -name 'Top' -type d`
newvar = $(subst /Top,,${variable})
Example:
Variable should return /username/mcarlis/source/Top
newvar should become /username/mcarlis/source
ありがとう!
-マット