X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=include%2Ftarget.mk;h=0217fcff6ff287d6a3a36303ac0a8276e6b806ef;hb=4fa69651d9a8b488cdcff6c4ae54b284a42415dd;hp=1f17883ab17d062fc240179fe7fb88eb78db0bab;hpb=23301f23c7b47ba4eefbe57d4b8b17431c643263;p=openwrt-10.03%2F.git diff --git a/include/target.mk b/include/target.mk index 1f17883ab..0217fcff6 100644 --- a/include/target.mk +++ b/include/target.mk @@ -1,4 +1,4 @@ -# +# # Copyright (C) 2007 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. @@ -75,10 +75,22 @@ define Profile endif endef -ifeq ($(if $(TARGET_BUILD),$(DUMP)),1) - -include $(PLATFORM_DIR)/profiles/*.mk - ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR)) +ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR)) + define IncludeProfiles + -include $(PLATFORM_DIR)/profiles/*.mk -include $(PLATFORM_SUBDIR)/profiles/*.mk + endef +else + define IncludeProfiles + -include $(PLATFORM_DIR)/profiles/*.mk + endef +endif + +ifeq ($(TARGET_BUILD),1) + $(eval $(call IncludeProfiles)) +else + ifeq ($(DUMP),) + $(eval $(call IncludeProfiles)) endif endif