Kebanyakan jawaban ternyata rumit atau salah. Namun contoh sederhana dan kuat telah diposting di tempat lain [ codereview ]. Memang opsi yang disediakan oleh preprocessor gnu agak membingungkan. Namun, penghapusan semua direktori dari target build dengan -MM
didokumentasikan dan bukan bug [ gpp ]:
Secara default CPP mengambil nama file input utama, menghapus semua
komponen direktori dan sufiks file seperti '.c', dan menambahkan sufiks objek biasa platform.
Opsi (agak lebih baru) -MMD
mungkin yang Anda inginkan. Untuk kelengkapan, contoh makefile yang mendukung beberapa dir src dan direktori build dengan beberapa komentar. Untuk versi sederhana tanpa build dirs lihat [ 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)
Metode ini berfungsi karena jika ada beberapa baris dependensi untuk satu target, dependensi hanya digabungkan, misalnya:
a.o: a.h
a.o: a.c
./cmd
setara dengan:
a.o: a.c a.h
./cmd
seperti yang disebutkan di: Makefile multiple dependency lines untuk satu target?