Restore test file dependencies so they're rebuilt properly (#5617)

This commit is contained in:
RavePossum 2024-10-30 04:20:50 -04:00 committed by GitHub
parent e9ab070e7d
commit 0a830b5a5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -414,6 +414,10 @@ $(TEST_BUILDDIR)/%.o: $(TEST_SUBDIR)/%.c
$(TEST_BUILDDIR)/%.d: $(TEST_SUBDIR)/%.c
$(SCANINC) -M $@ $(INCLUDE_SCANINC_ARGS) -I tools/agbcc/include $<
ifneq ($(NODEP),1)
-include $(addprefix $(OBJ_DIR)/,$(TEST_SRCS:.c=.d))
endif
$(ASM_BUILDDIR)/%.o: $(ASM_SUBDIR)/%.s
$(AS) $(ASFLAGS) -o $@ $<