X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/cfb77e97fa63d709c81bc730ea47a06172d78669..f32a2da636ffa6eaa6b8d0d3f35a673fa12e404a:/cgit.mk diff --git a/cgit.mk b/cgit.mk index bf3bbb1..8af0041 100644 --- a/cgit.mk +++ b/cgit.mk @@ -62,6 +62,14 @@ $(CGIT_VERSION_OBJS): EXTRA_CPPFLAGS = \ -DCGIT_VERSION='"$(CGIT_VERSION)"' +# Git handles dependencies using ":=" so dependencies in CGIT_OBJ are not +# handled by that and we must handle them ourselves. +cgit_dep_files := $(foreach f,$(CGIT_OBJS),$(dir $f).depend/$(notdir $f).d) +cgit_dep_files_present := $(wildcard $(cgit_dep_files)) +ifneq ($(cgit_dep_files_present),) +include $(cgit_dep_files_present) +endif + ifeq ($(wildcard $(CGIT_PREFIX).depend),) missing_dep_dirs += $(CGIT_PREFIX).depend endif