summaryrefslogtreecommitdiff
path: root/Makefile.test
authorkergoth <kergoth>2002-11-05 20:23:45 (UTC)
committer kergoth <kergoth>2002-11-05 20:23:45 (UTC)
commit8e8ffc20d1699ba678d380f25e08424492f7d8ab (patch) (unidiff)
tree7a9241f6706a35e8885614d5f0f509622b1eabe4 /Makefile.test
parent8eda06d13cf3eacf986cf1ab32c884c64ee972ae (diff)
downloadopie-8e8ffc20d1699ba678d380f25e08424492f7d8ab.zip
opie-8e8ffc20d1699ba678d380f25e08424492f7d8ab.tar.gz
opie-8e8ffc20d1699ba678d380f25e08424492f7d8ab.tar.bz2
Use stampfile to ensure header symlinks are in place
Diffstat (limited to 'Makefile.test') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.test5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.test b/Makefile.test
index 122e555..6753ee1 100644
--- a/Makefile.test
+++ b/Makefile.test
@@ -57,34 +57,37 @@ config :
57oldconfig : 57oldconfig :
58 $(call descend,scripts/kconfig,conf) 58 $(call descend,scripts/kconfig,conf)
59 ./scripts/kconfig/conf -o ./config.in 59 ./scripts/kconfig/conf -o ./config.in
60 60
61randconfig : 61randconfig :
62 $(call descend,scripts/kconfig,conf) 62 $(call descend,scripts/kconfig,conf)
63 ./scripts/kconfig/conf -r ./config.in 63 ./scripts/kconfig/conf -r ./config.in
64 64
65allyesconfig : 65allyesconfig :
66 $(call descend,scripts/kconfig,conf) 66 $(call descend,scripts/kconfig,conf)
67 ./scripts/kconfig/conf -y ./config.in 67 ./scripts/kconfig/conf -y ./config.in
68 68
69allnoconfig : 69allnoconfig :
70 $(call descend,scripts/kconfig,conf) 70 $(call descend,scripts/kconfig,conf)
71 ./scripts/kconfig/conf -n ./config.in 71 ./scripts/kconfig/conf -n ./config.in
72 72
73defconfig : 73defconfig :
74 $(call descend,scripts/kconfig,conf) 74 $(call descend,scripts/kconfig,conf)
75 ./scripts/kconfig/conf -d ./config.in 75 ./scripts/kconfig/conf -d ./config.in
76 76
77 77
78ifeq ($(if $(filter clean%,$(MAKECMDGOALS)),clean,notclean),notclean) 78ifeq ($(if $(filter clean%,$(MAKECMDGOALS)),clean,notclean),notclean)
79-include $(TOPDIR)/.config 79-include $(TOPDIR)/.config
80endif 80endif
81ifeq ($(shell if [ -e $(TOPDIR)/..config.cmd ]; then echo exists; fi),exists) 81ifeq ($(shell if [ -e $(TOPDIR)/..config.cmd ]; then echo exists; fi),exists)
82-include $(TOPDIR)/..config.cmd 82-include $(TOPDIR)/..config.cmd
83endif 83endif
84ifeq ($(if $(filter clean%,$(MAKECMDGOALS)),clean,notclean),notclean) 84ifeq ($(if $(filter clean%,$(MAKECMDGOALS)),clean,notclean),notclean)
85-include $(TOPDIR)/.depends 85-include $(TOPDIR)/.depends
86endif 86endif
87 87
88all : $(subdir-y) 88all : $(subdir-y)
89 89
90$(subdir-y) : $(TOPDIR)/stamp-headers
91
92
90include $(TOPDIR)/Rules.make 93include $(TOPDIR)/Rules.make