From f1e843864f89b58f806af371e0a09b1c219c522e Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 12 Apr 2015 18:37:45 +0200 Subject: [PATCH] pkg-kconfig: declare phony targets as such Just like the previous commit did for the pkg-generic infrastructure, this commit improves the pkg-kconfig infrastructure to declare its custom - targets as PHONY. Signed-off-by: Thomas Petazzoni Reviewed-by: "Yann E. MORIN" --- package/pkg-kconfig.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/pkg-kconfig.mk b/package/pkg-kconfig.mk index fd9f19d949..8361064e2b 100644 --- a/package/pkg-kconfig.mk +++ b/package/pkg-kconfig.mk @@ -100,6 +100,12 @@ $(1)-update-defconfig: $(1)-savedefconfig endif # package enabled +.PHONY: \ + $(1)-update-config \ + $(1)-update-defconfig \ + $(1)-savedefconfig \ + $$(addprefix $(1)-,$$($(2)_KCONFIG_EDITORS)) + endef # inner-kconfig-package ################################################################################