mk: fix dependencies when modifying config
authorThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 19 Mar 2014 11:13:45 +0000 (12:13 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 26 Mar 2014 22:10:41 +0000 (23:10 +0100)
If .config file is changed and .depdirs was built before,
it must be updated.
It is now done silently (-s) in checkconfig rule.
Now .depdirs is not redone if .config is older.

It has been tested by enabling PMD_PCAP after a default build.
KVARGS dependency should appear in .depdirs.

There is also a typo fix for PHONY rule.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
mk/rte.sdkconfig.mk
mk/rte.sdkdepdirs.mk

index 3d05ba5..b4e45f2 100644 (file)
@@ -114,6 +114,7 @@ checkconfig:
        fi
        $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk \
                headerconfig NODOTCONF=1
+       $(Q)$(MAKE) -s depdirs
 
 .PHONY: FORCE
 FORCE:
index 03dbdb1..1b8d02e 100644 (file)
@@ -38,8 +38,9 @@ endif
 
 # use a "for" in a shell to process dependencies: we don't want this
 # task to be run in parallel.
-..PHONY: depdirs
-depdirs:
+.PHONY: depdirs
+depdirs: $(RTE_OUTPUT)/.depdirs
+$(RTE_OUTPUT)/.depdirs: $(RTE_OUTPUT)/.config
        @rm -f $(RTE_OUTPUT)/.depdirs ; \
        for d in $(ROOTDIRS-y); do \
                if [ -f $(RTE_SRCDIR)/$$d/Makefile ]; then \