The standard approach is to generate header dependencies automatically while compiling.
For the first compilation no dependencies are necessary since every source file must be compiled. Subsequent recompilations load dependencies generated by the previous compilation to determine what needs to be recompiled.
Your $(MyNotGCCCompiler)
is likely to have a command line option to generate a dependencies file.
When using gcc
it works like this:
.SUFFIXES:
SRC := $(wildard ./src/*.c)
OBJ := $(SRC:%.c=%.o)
DEP := $(OBJ:%.o=%.d)
all: $(OBJ)
# when compiling produce a .d file as well
%.o: %.c
gcc -c -o $@ $(CPPFLAGS) $(CFLAGS) -MD -MP -MF ${@:.o=.d} $<
# don't fail on missing .d files
# there won't be any on the first run
-include $(DEP)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…