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.
makefile では、コンパイラ変数CXXFLAGSとCPPFLAGSはそれぞれ次のように設定されます。
CXXFLAGS
CPPFLAGS
CXXFLAGS = -I. $(shell something)
この-I directoryオプションは、ビルドプロセスに別の標準 lib ディレクトリを含めるために使用されますが、「.」がどのような影響を与えるかわかりません。上の例にあります。makefileを削除した後でも機能します'-I.'。
-I directory
makefile
'-I.'