From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id 865755A54 for ; Tue, 9 Jun 2015 14:05:41 +0200 (CEST) Received: by wigg3 with SMTP id g3so14577402wig.1 for ; Tue, 09 Jun 2015 05:05:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Y+zWIAPvJNZvkNPupnE+O5ubgpIbHSB5QJqsC4SR5QE=; b=PHr+krUTFTnTHQN956khCyEQlYKKXo11BSetwq65opP+XB6DUiXv5kPoHEzpx4RmAb wRkI0907Ncfdh10kWQmt9cBC8XapzfANn+Lc1raIwQxMgPteicDqdau6PFXhCP5VxGp1 r7aHUeZyHTVdWlsggAVw+B3IbTv6nmp9E/BoQFdOgKKR4i+uW1BTW+KG1QeXEJ852dsZ JfhqZY8/rcWTKSguQD4d2Wdj1ihPbZvI9qAdE9iGFokgr5ie2YF+WQ6RkjOI+BYFH+SV 17Dd9zrFisJ3Y20Tnlm2zAzgXcv4Ac6ayC3qeJB+1ACvP7MLnA6XlF0lgZIp5LpvqaIQ x76Q== X-Gm-Message-State: ALoCoQljmEy8vUkwgUymE4HFI4pnGu2hhc3kg8J8qt9D7WYjp8BooxSPpds/aBmU2Lw6egAiUXGS X-Received: by 10.194.184.79 with SMTP id es15mr40096278wjc.112.1433851541314; Tue, 09 Jun 2015 05:05:41 -0700 (PDT) Received: from [10.16.0.195] (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by mx.google.com with ESMTPSA id u13sm9115380wjw.37.2015.06.09.05.05.40 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 09 Jun 2015 05:05:40 -0700 (PDT) Message-ID: <5576D68F.7040804@6wind.com> Date: Tue, 09 Jun 2015 14:05:35 +0200 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.6.0 MIME-Version: 1.0 To: Maxim Uvarov , dev@dpdk.org References: <1433844953-29887-1-git-send-email-maxim.uvarov@linaro.org> In-Reply-To: <1433844953-29887-1-git-send-email-maxim.uvarov@linaro.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] dpdk1.7.1 rte.app.mk add options not not build targerts X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2015 12:05:41 -0000 Hello Maxim, On 06/09/2015 12:15 PM, Maxim Uvarov wrote: > Inherit build varibles only so that this file can be included > from other projects. > > Signed-off-by: Maxim Uvarov Can you detail a bit more what you want to do? Why do you need to include rte.app.mk? This file is internal to the dpdk framework. By the way, the title is not understandable: - why dpdk1.7.1 ? - targerts -> targets - not not ? Regards, Olivier > --- > mk/rte.app.mk | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/mk/rte.app.mk b/mk/rte.app.mk > index 34dff2a..b75925d 100644 > --- a/mk/rte.app.mk > +++ b/mk/rte.app.mk > @@ -222,6 +222,7 @@ endif # ifeq ($(NO_AUTOLIBS),) > > LDLIBS += $(CPU_LDLIBS) > > +ifneq ($(DPRK_APP_MK_SKIP_BUILD_TARGETS),1) > .PHONY: all > all: install > > @@ -232,6 +233,7 @@ _postinstall: build > > .PHONY: build > build: _postbuild > +endif > > exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1)))) > > @@ -306,6 +308,7 @@ $(RTE_OUTPUT)/app/$(APP).map: $(APP) > @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app > $(Q)cp -f $(APP).map $(RTE_OUTPUT)/app > > +ifneq ($(DPRK_APP_MK_SKIP_BUILD_TARGETS), 1) > # > # Clean all generated files > # > @@ -317,7 +320,7 @@ clean: _postclean > doclean: > $(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \ > $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd > - > +endif > > include $(RTE_SDK)/mk/internal/rte.compile-post.mk > include $(RTE_SDK)/mk/internal/rte.install-post.mk >