From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olivier Matz Subject: Re: [PATCH] mk: optimize directory dependencies Date: Mon, 20 Mar 2017 09:31:53 +0100 Message-ID: <20170320093153.2b6f6d99@platinum> References: <1485191953-2613-1-git-send-email-olivier.matz@6wind.com> <1489770822-27539-1-git-send-email-olivier.matz@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: Ferruh Yigit , Thomas Monjalon , dev@dpdk.org, keith.wiles@intel.com, jerin.jacob@caviumnetworks.com To: Robin Jarry Return-path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id 1E70211DE for ; Mon, 20 Mar 2017 09:31:56 +0100 (CET) Received: by mail-wr0-f180.google.com with SMTP id g10so86932793wrg.2 for ; Mon, 20 Mar 2017 01:31:56 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Robin, On Fri, 17 Mar 2017 18:47:20 +0100, Robin Jarry wro= te: > Hi Olivier, >=20 > Thanks again for this. I only have minor cosmetic remarks: >=20 > Le 17 mars 2017 18:13, "Olivier Matz" a =C3=A9cr= it: > > diff --git a/app/pdump/Makefile b/app/pdump/Makefile > > index 536198f..8ec6bd6 100644 > > --- a/app/pdump/Makefile > > +++ b/app/pdump/Makefile > > @@ -42,7 +42,6 @@ CFLAGS +=3D $(WERROR_FLAGS) > > SRCS-y :=3D main.c > > > > # this application needs libraries first > > -DEPDIRS-y +=3D lib > > > > include $(RTE_SDK)/mk/rte.app.mk =20 >=20 > Maybe remove the comment line too? > > > diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile > > index eec1ed0..3be1ae8 100644 > > --- a/app/test-pmd/Makefile > > +++ b/app/test-pmd/Makefile > > @@ -82,7 +82,6 @@ endif > > CFLAGS_cmdline.o :=3D -D_GNU_SOURCE > > > > # this application needs libraries first > > -DEPDIRS-y +=3D lib drivers > > > > include $(RTE_SDK)/mk/rte.app.mk =20 >=20 > Same here. There may be others. Thanks, I'll check for other occurrences. > > --- a/mk/rte.subdir.mk > > +++ b/mk/rte.subdir.mk > > @@ -59,8 +61,9 @@ build: _postbuild > > .PHONY: $(DIRS-y) > > $(DIRS-y): > > @[ -d $(CURDIR)/$@ ] || mkdir -p $(CURDIR)/$@ > > - @echo "=3D=3D Build $S/$@" > > + @echo "=3D=3D Build $S/$@ " =20 >=20 > Why change this line ? It's a typo, I'll remove it in v2. Thanks for your review Olivier