author | kergoth <kergoth> | 2002-11-05 18:29:50 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-05 18:29:50 (UTC) |
commit | 5bf628ee145b3bdd777cf4bc541aee82b8700884 (patch) (side-by-side diff) | |
tree | 7c89fe80b1008e83db25e7bcbf59035ac45c30fc /Makefile.test | |
parent | 468f1826ade3afaf7a8b8587b297d9ec6e0ccf3f (diff) | |
download | opie-5bf628ee145b3bdd777cf4bc541aee82b8700884.zip opie-5bf628ee145b3bdd777cf4bc541aee82b8700884.tar.gz opie-5bf628ee145b3bdd777cf4bc541aee82b8700884.tar.bz2 |
oops clean-configs shoudl depend on .depends.cfgs not .depends
-rw-r--r-- | Makefile.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.test b/Makefile.test index b30b85d..74c6587 100644 --- a/Makefile.test +++ b/Makefile.test @@ -11,25 +11,25 @@ export QMAKESPEC=$(QMAKESPECSDIR)/qws/linux-generic-g++ # everything else depends on .depends, to ensure the dependencies are # intact. # # NOTE: The order in which things happen in this makefile is # -critical-. Do not rearrange this! all : $(TOPDIR)/.config $(TOPDIR)/.config : $(TOPDIR)/.depends.cfgs all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(TOPDIR)/.depends -clean-configs : $(TOPDIR)/.depends +clean-configs : $(TOPDIR)/.depends.cfgs @echo "Wiping generated config.in files..." @-rm -f $(configs) -include $(TOPDIR)/.depends.cfgs all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs) $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) $(call descend,scripts/kconfig,conf) @if [ ! -e $@ ]; then \ cp $(TOPDIR)/def-configs/opie $@; \ fi; |