ほとんどの回答は驚くほど複雑であるか、誤っています。ただし、シンプルで堅牢な例が他の場所に投稿されています[ codereview ]。確かに、gnuプリプロセッサによって提供されるオプションは少し混乱します。ただし、ビルドターゲットからのすべてのディレクトリの削除-MM
は文書化されており、バグではありません[ gpp ]:
デフォルトでは、CPPはメイン入力ファイルの名前を取得し、
ディレクトリコンポーネントと '.c'などのファイルサフィックスを削除し、プラットフォームの通常のオブジェクトサフィックスを追加します。
(やや新しい)-MMD
オプションはおそらくあなたが望むものです。完全を期すために、複数のsrc dirsとビルドdirsをサポートするmakefileの例にコメントを付けます。ビルドディレクトリのない単純なバージョンについては、[ codereview ]を参照してください。
CXX = clang++
CXX_FLAGS = -Wfatal-errors -Wall -Wextra -Wpedantic -Wconversion -Wshadow
# Final binary
BIN = mybin
# Put all auto generated stuff to this build dir.
BUILD_DIR = ./build
# List of all .cpp source files.
CPP = main.cpp $(wildcard dir1/*.cpp) $(wildcard dir2/*.cpp)
# All .o files go to build dir.
OBJ = $(CPP:%.cpp=$(BUILD_DIR)/%.o)
# Gcc/Clang will create these .d files containing dependencies.
DEP = $(OBJ:%.o=%.d)
# Default target named after the binary.
$(BIN) : $(BUILD_DIR)/$(BIN)
# Actual target of the binary - depends on all .o files.
$(BUILD_DIR)/$(BIN) : $(OBJ)
# Create build directories - same structure as sources.
mkdir -p $(@D)
# Just link all the object files.
$(CXX) $(CXX_FLAGS) $^ -o $@
# Include all .d files
-include $(DEP)
# Build target for every single object file.
# The potential dependency on header files is covered
# by calling `-include $(DEP)`.
$(BUILD_DIR)/%.o : %.cpp
mkdir -p $(@D)
# The -MMD flags additionaly creates a .d file with
# the same name as the .o file.
$(CXX) $(CXX_FLAGS) -MMD -c $< -o $@
.PHONY : clean
clean :
# This should remove all generated files.
-rm $(BUILD_DIR)/$(BIN) $(OBJ) $(DEP)
この方法が機能するのは、1つのターゲットに複数の依存関係の行がある場合、依存関係が単純に結合されるためです。
a.o: a.h
a.o: a.c
./cmd
以下と同等です。
a.o: a.c a.h
./cmd
で言及したように:Makefile単一のターゲットに対する複数の依存関係行?