reorganize subtargets, sort subtargets below top level targets

SVN-Revision: 9378
This commit is contained in:
Felix Fietkau
2007-10-20 19:10:06 +00:00
parent d529f387c4
commit 86a906bed2
8 changed files with 118 additions and 92 deletions

View File

@@ -23,15 +23,6 @@ endif
TARGETID:=$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET))
PLATFORM_SUBDIR:=$(PLATFORM_DIR)$(if $(SUBTARGET),/$(SUBTARGET))
define Target
KERNEL_TARGETS+=$(1)
ifeq ($(DUMP),1)
ifeq ($(SUBTARGET),)
BuildTarget=$$(BuildTargets/DumpAll)
endif
endif
endef
ifneq ($(TARGET_BUILD),1)
include $(PLATFORM_DIR)/Makefile
ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
@@ -132,18 +123,13 @@ ifeq ($(DUMP),1)
endif
endif
define BuildTargets/DumpAll
dumpinfo:
@$(foreach SUBTARGET,$(KERNEL_TARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); )
endef
define BuildTargets/DumpCurrent
.PHONY: dumpinfo
dumpinfo:
@echo 'Target: $(TARGETID)'; \
echo 'Target-Board: $(BOARD)'; \
echo 'Target-Kernel: $(KERNEL)'; \
echo 'Target-Name: $(BOARDNAME) [$(KERNEL)]'; \
echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGET),, [$(KERNEL)])'; \
echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
echo 'Target-Arch: $(ARCH)'; \
echo 'Target-Features: $(FEATURES)'; \
@@ -156,6 +142,7 @@ define BuildTargets/DumpCurrent
echo '@@'; \
echo 'Default-Packages: $(DEFAULT_PACKAGES)'; \
$(DUMPINFO)
$(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
endef
include $(INCLUDE_DIR)/kernel.mk