summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-04-18 08:03:43 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-04-19 13:00:34 -0400
commit00a36e84e385bc02f04e335d8e5f786a2e962c9d (patch)
tree07adf26fc413eb2c1b9f4be7ba201b63e13e08b5
parente59be892d234135179dd7c3b072f8f12a41b6e1a (diff)
downloadbfs-00a36e84e385bc02f04e335d8e5f786a2e962c9d.tar.xz
config: Remove explicit -MF from DEPFLAGS
We use the default name anyway.
-rw-r--r--config/deps.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/deps.mk b/config/deps.mk
index e963b6e..2201f06 100644
--- a/config/deps.mk
+++ b/config/deps.mk
@@ -12,7 +12,7 @@ ${GEN}/deps.mk::
${MSG} "[ GEN] ${TGT}"
printf '# %s\n' "${TGT}" >$@
if config/cc.sh -MD -MP -MF /dev/null config/empty.c; then \
- printf 'DEPFLAGS = -MD -MP -MF $${@:.o=.d}\n'; \
+ printf 'DEPFLAGS = -MD -MP\n'; \
fi >>$@ 2>$@.log
${VCAT} $@
@printf -- '-include %s\n' ${OBJS:.o=.d} >>$@