summaryrefslogtreecommitdiff
path: root/Makefile.test
authorkergoth <kergoth>2002-11-05 18:01:18 (UTC)
committer kergoth <kergoth>2002-11-05 18:01:18 (UTC)
commitbbacc58102236691c8161fac2674998ce428ac3c (patch) (side-by-side diff)
tree11bdfeccc32ef606863fd19e8ff8c3e293721335 /Makefile.test
parent19f22f15980791a734604a2323dc86a73787196c (diff)
downloadopie-bbacc58102236691c8161fac2674998ce428ac3c.zip
opie-bbacc58102236691c8161fac2674998ce428ac3c.tar.gz
opie-bbacc58102236691c8161fac2674998ce428ac3c.tar.bz2
Update dependency generation, and ensure it uses the opie default config when none exists
Diffstat (limited to 'Makefile.test') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.test53
1 files changed, 21 insertions, 32 deletions
diff --git a/Makefile.test b/Makefile.test
index 526aa5d..3311cde 100644
--- a/Makefile.test
+++ b/Makefile.test
@@ -5,69 +5,58 @@ export TOPDIR:=$(OPIEDIR)
export QMAKESPECSDIR=$(OPIEDIR)/mkspecs
export QMAKESPEC=$(QMAKESPECSDIR)/qws/linux-generic-g++
-# The following are config.in's which are generated, to avoid numerous manual edits when
-# adding packages to the build.
-#
-# NOTE: There currently exists a bug regarding this, the toplevel config.in -must- be created
-# -after- the lower level config.ins, as makecfg.pl does a find for config.in files!
-#
-# solution: generate this list and stuff into .depends, and also
-# generate config.in interdependencies (i.e. topdir config.in depends on
-# config.ins within dirs below it. dependencies are solely dir structure
-# driven)
+all :
-configs = $(TOPDIR)/x11/ipc/server/config.in $(TOPDIR)/x11/ipc/config.in $(TOPDIR)/x11/config.in $(TOPDIR)/noncore/unsupported/opiemail/ifaces/config.in $(TOPDIR)/noncore/unsupported/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/todayplugins/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/development/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/applets/restartapplet2/config.in $(TOPDIR)/core/applets/config.in $(TOPDIR)/config.in
-
-all : configs
-
-configs : $(shell echo $(configs) | sort -r)
-
-clean-configs :
+clean-configs : $(TOPDIR)/.depends
@echo "Wiping generated config.in files..."
@-rm -f $(configs)
-./.config:
+-include $(TOPDIR)/.config
+-include $(TOPDIR)/..config.cmd
+-include $(TOPDIR)/.depends
+
+all : $(TOPDIR)/.depends $(configs) $(subdir-y)
+
+./.config: $(configs)
$(call descend,scripts/kconfig,conf)
- @$(MAKE) -C scripts/kconfig conf
+ @if [ ! -e $@ ]; then \
+ cp $(TOPDIR)/def-configs/opie $@; \
+ fi;
+ @$(MAKE) -C scripts/kconfig conf;
./scripts/kconfig/conf -s ./config.in
-xconfig:
+xconfig: $(configs)
$(call descend,scripts/kconfig,qconf)
./scripts/kconfig/qconf ./config.in
-menuconfig: scripts/lxdialog/lxdialog
+menuconfig: $(configs) scripts/lxdialog/lxdialog
$(call descend,scripts/kconfig,mconf)
./scripts/kconfig/mconf ./config.in
-config:
+config: $(configs)
$(call descend,scripts/kconfig,conf)
./scripts/kconfig/conf ./config.in
-oldconfig:
+oldconfig: $(configs)
$(call descend,scripts/kconfig,conf)
./scripts/kconfig/conf -o ./config.in
-randconfig:
+randconfig: $(configs)
$(call descend,scripts/kconfig,conf)
./scripts/kconfig/conf -r ./config.in
-allyesconfig:
+allyesconfig: $(configs)
$(call descend,scripts/kconfig,conf)
./scripts/kconfig/conf -y ./config.in
-allnoconfig:
+allnoconfig: $(configs)
$(call descend,scripts/kconfig,conf)
./scripts/kconfig/conf -n ./config.in
-defconfig:
+defconfig: $(configs)
$(call descend,scripts/kconfig,conf)
./scripts/kconfig/conf -d ./config.in
--include $(TOPDIR)/.config
--include $(TOPDIR)/..config.cmd
--include $(TOPDIR)/.depends
-
-all : $(TOPDIR)/.depends $(subdir-y)
include $(TOPDIR)/Rules.make