-rw-r--r-- | Makefile.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.test b/Makefile.test index 74c6587..392ea37 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -68,15 +68,21 @@ allnoconfig : | |||
68 | $(call descend,scripts/kconfig,conf) | 68 | $(call descend,scripts/kconfig,conf) |
69 | ./scripts/kconfig/conf -n ./config.in | 69 | ./scripts/kconfig/conf -n ./config.in |
70 | 70 | ||
71 | defconfig : | 71 | defconfig : |
72 | $(call descend,scripts/kconfig,conf) | 72 | $(call descend,scripts/kconfig,conf) |
73 | ./scripts/kconfig/conf -d ./config.in | 73 | ./scripts/kconfig/conf -d ./config.in |
74 | 74 | ||
75 | 75 | ||
76 | ifeq ($(if $(filter clean%,$(MAKECMDGOALS)),clean,notclean),notclean) | ||
76 | -include $(TOPDIR)/.config | 77 | -include $(TOPDIR)/.config |
78 | endif | ||
79 | ifeq ($(shell if [ -e $(TOPDIR)/..config.cmd ]; then echo exists; fi),exists) | ||
77 | -include $(TOPDIR)/..config.cmd | 80 | -include $(TOPDIR)/..config.cmd |
81 | endif | ||
82 | ifeq ($(if $(filter clean%,$(MAKECMDGOALS)),clean,notclean),notclean) | ||
78 | -include $(TOPDIR)/.depends | 83 | -include $(TOPDIR)/.depends |
84 | endif | ||
79 | 85 | ||
80 | all : $(subdir-y) | 86 | all : $(subdir-y) |
81 | 87 | ||
82 | include $(TOPDIR)/Rules.make | 88 | include $(TOPDIR)/Rules.make |