vars.am: Add missing `-M' in suffix-rules command.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 20 Aug 2019 16:05:50 +0000 (17:05 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 20 Aug 2019 16:05:50 +0000 (17:05 +0100)
vars.am

diff --git a/vars.am b/vars.am
index 21f03ce..af6c14e 100644 (file)
--- a/vars.am
+++ b/vars.am
@@ -92,8 +92,8 @@ V_SOD_h_0              = @echo "  SOD[h]   $@";
 
 ## Build rules.
 SUFFIXES               += .c .h .sod
-.sod.c:; $(V_SOD_c)$(SOD) -tc $<
-.sod.h:; $(V_SOD_h)$(SOD) -th $<
+.sod.c:; $(V_SOD_c)$(SOD) -M -tc $<
+.sod.h:; $(V_SOD_h)$(SOD) -M -th $<
 %.c: %.sod $(SOD); $(V_SOD_c)$(SOD) -M -tc $<
 %.h: %.sod $(SOD); $(V_SOD_h)$(SOD) -M -th $<