mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 04:21:23 +00:00
Makefile: fix object file not depending on headers
BRUH MOMENT
This commit is contained in:
parent
5f4e21ed3a
commit
e39bf7503f
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define deps_rule +=
|
define deps_rule +=
|
||||||
$(CC) $(CFLAGS) -M -MF $@ -MT $(OBJDIR)/$< $<
|
$(CC) $(CFLAGS) -M -MF $@ -MT $(OBJDIR)/$(<:.c=.o) $<
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(DEPDIR)/%.d: %.c
|
$(DEPDIR)/%.d: %.c
|
||||||
|
|
Loading…
Reference in a new issue