Skip to content

Commit 3604766

Browse files
authored
Merge pull request #1633 from emily-is-my-username/fix/c-file-deps
makefile: include .c sources in DEPS
2 parents cfcaf58 + 20da528 commit 3604766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ tools: $(TOOLS)
312312
.PHONY: all dep clean gitclean regen-i18n runtests openbios install strip appimage tools
313313

314314
DEPS += $(patsubst %.c,%.dep,$(filter %.c,$(SRCS)))
315-
DEPS := $(patsubst %.cc,%.dep,$(filter %.cc,$(SRCS)))
315+
DEPS += $(patsubst %.cc,%.dep,$(filter %.cc,$(SRCS)))
316316
DEPS += $(patsubst %.cpp,%.dep,$(filter %.cpp,$(SRCS)))
317317

318318
dep: $(DEPS)

0 commit comments

Comments
 (0)