Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
make clean を実行するときに別のディレクトリを削除したいのですが、ルールでそれをコーディングする方法がわかりません。
私が試してみました
clean-local: -rm -f del.dir
しかし、それはうまくいきませんでした。
私も試しました
CLEANFILES = del.dir
しかし、それもうまくいきませんでした。
任意の提案をいただければ幸いです。
clean-local動作するはずですが、ディレクトリを消去するコマンドは でありrm -rf dir、 ではありませんrm -f dir。
clean-local
rm -rf dir
rm -f dir