diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-20 19:10:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-20 19:10:06 +0000 |
commit | 86a906bed2d2011a63b11928ffd92e45f389077d (patch) | |
tree | 5845e6c791a6bce84b7ecd423afeb219df48f9af /include/target.mk | |
parent | d529f387c4a7f0a479790afe270e66f414e97877 (diff) | |
download | upstream-86a906bed2d2011a63b11928ffd92e45f389077d.tar.gz upstream-86a906bed2d2011a63b11928ffd92e45f389077d.tar.bz2 upstream-86a906bed2d2011a63b11928ffd92e45f389077d.zip |
reorganize subtargets, sort subtargets below top level targets
SVN-Revision: 9378
Diffstat (limited to 'include/target.mk')
-rw-r--r-- | include/target.mk | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/include/target.mk b/include/target.mk index 011992b82c..9156789c88 100644 --- a/include/target.mk +++ b/include/target.mk @@ -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 |