From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id B9F292BB2 for ; Thu, 11 Aug 2016 03:38:48 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 10 Aug 2016 18:38:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,502,1464678000"; d="scan'208";a="1023401828" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga001.fm.intel.com with ESMTP; 10 Aug 2016 18:38:48 -0700 Received: from fmsmsx114.amr.corp.intel.com (10.18.116.8) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 10 Aug 2016 18:38:47 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX114.amr.corp.intel.com (10.18.116.8) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 10 Aug 2016 18:38:47 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.8]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.116]) with mapi id 14.03.0248.002; Thu, 11 Aug 2016 09:38:45 +0800 From: "Xu, HuilongX" To: "thomas.monjalon@6wind.com" , "dev@dpdk.org" CC: "Xu, HuilongX" Thread-Topic: [dpdk-dev][PATCH] mk:fix second compile error Thread-Index: AQHR8gQvAXHPXYv5Nk64TGAZG7SXsKBC/GDg Date: Thu, 11 Aug 2016 01:38:43 +0000 Message-ID: References: <1470722518-4733-1-git-send-email-huilongx.xu@intel.com> In-Reply-To: <1470722518-4733-1-git-send-email-huilongx.xu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] mk:fix second compile error 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: Thu, 11 Aug 2016 01:38:49 -0000 Hi Thomas, Could you give me some comments about this patch. Thanks a lot > -----Original Message----- > From: Xu, HuilongX > Sent: Tuesday, August 09, 2016 2:02 PM > To: dev@dpdk.org > Cc: Xu, HuilongX > Subject: [dpdk-dev][PATCH] mk:fix second compile error >=20 > when compile different targets on a same environment. > The second compile will failed, because test_resource obj file > can't auto clearn by makfile. >=20 > Signed-off-by: xu,huilong > --- > mk/rte.app.mk | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) >=20 > diff --git a/mk/rte.app.mk b/mk/rte.app.mk > index eb28e11..d23e8b9 100644 > --- a/mk/rte.app.mk > +++ b/mk/rte.app.mk > @@ -263,7 +263,8 @@ $(RTE_OUTPUT)/app/$(APP).map: $(APP) > # > .PHONY: clean > clean: _postclean > - $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS) > + $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS) > \ > + test_resource.res test_resource_c.o test_resource_c.res.o >=20 > .PHONY: doclean > doclean: > -- > 1.9.3