DPDK patches and discussions
 help / color / mirror / Atom feed
From: Tanzeel Ahmed <tanzeelahmed713@gmail.com>
To: orika@nvidia.com
Cc: dev@dpdk.org, Tanzeel Ahmed <tanzeelahmed713@gmail.com>
Subject: [PATCH] examples/flow_filtering: fix make clean
Date: Sat, 29 Mar 2025 12:53:33 -0700	[thread overview]
Message-ID: <20250329195333.324178-1-tanzeelahmed713@gmail.com> (raw)

make clean is unable to delete build directory
because *.o files are not removed.

The other way to fix this would be to add all the
c files into SRCS-y.

Signed-off-by: Tanzeel Ahmed <tanzeelahmed713@gmail.com>
---
 examples/flow_filtering/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/flow_filtering/Makefile b/examples/flow_filtering/Makefile
index 9998ed10b5..653e3319a2 100644
--- a/examples/flow_filtering/Makefile
+++ b/examples/flow_filtering/Makefile
@@ -50,5 +50,5 @@ build:
 
 .PHONY: clean
 clean:
-	rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
+	rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared build/*.o
 	test -d build && rmdir -p build || true
-- 
2.25.1


             reply	other threads:[~2025-03-31  8:42 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-29 19:53 Tanzeel Ahmed [this message]
2025-03-31  8:45 ` Thomas Monjalon
2025-03-31 21:56   ` Tanzeel Ahmed
2025-04-03  7:01 ` Shani Peretz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250329195333.324178-1-tanzeelahmed713@gmail.com \
    --to=tanzeelahmed713@gmail.com \
    --cc=dev@dpdk.org \
    --cc=orika@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).