Some libs' Makefile aren't loading the dependencies files *.d2.
We can load them from "libs.mk" as none of the Makefile here are
changing $(DEPS) or $(DEPS_INCLUDE) so it is fine to move the
"include" to "libs.mk".
As a little improvement, don't load the dependencies files (and thus
avoid regenerating the *.d2 files) during `make clean`.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
include $(XEN_ROOT)/tools/libs/libs.mk
--include $(DEPS_INCLUDE)
-
clean: cleanlocal
.PHONY: cleanlocal
libxenguest.so.$(MAJOR).$(MINOR): COMPRESSION_LIBS = $(filter -l%,$(zlib-options))
libxenguest.so.$(MAJOR).$(MINOR): APPEND_LDFLAGS += $(COMPRESSION_LIBS) -lz
--include $(DEPS_INCLUDE)
-
.PHONY: cleanlocal
cleanlocal:
rm -f libxenguest.map
.PHONY: distclean
distclean: clean
+
+ifeq ($(filter clean distclean,$(MAKECMDGOALS)),)
+-include $(DEPS_INCLUDE)
+endif
$(RM) -f libxenlight.map
$(RM) -f $(AUTOSRCS) $(AUTOINCS)
$(MAKE) -C $(ACPI_PATH) ACPI_BUILD_DIR=$(CURDIR) clean
-
--include $(DEPS_INCLUDE)
cleanlocal:
rm -f $(BINDINGS) $(BINDINGSRC) $(DEPS_RM)
rm -f libxenstat.map
-
--include $(DEPS_INCLUDE)
xs.opic: CFLAGS += -DUSE_DLSYM
endif
--include $(DEPS_INCLUDE)
-
.PHONY: install
install: install-headers
@rm -f $*.[ch]
$(FLEX) --header-file=$*.h --outfile=$*.c $<
--include $(DEPS_INCLUDE)
-
clean: cleanlocal
.PHONY: cleanlocal
NO_HEADERS_CHK := y
include $(XEN_ROOT)/tools/libs/libs.mk
--include $(DEPS_INCLUDE)
clean: cleanlocal