X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/7669f7f73082ce9eb1aef28495773492cc5bec90..820df9c66073b1345397642b46f1885b40b620e3:/cgit.mk diff --git a/cgit.mk b/cgit.mk index e1aed63..8af0041 100644 --- a/cgit.mk +++ b/cgit.mk @@ -5,6 +5,8 @@ include Makefile CGIT_PREFIX = ../ +-include $(CGIT_PREFIX)cgit.conf + # The CGIT_* variables are inherited when this file is called from the # main Makefile - they are defined there. @@ -60,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