* [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files
@ 2017-02-22 20:54 Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 2/3] mk: clean app.map files Ferruh Yigit
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Ferruh Yigit @ 2017-02-22 20:54 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev, Ferruh Yigit
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
mk/rte.lib.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/rte.lib.mk b/mk/rte.lib.mk
index 33a5f5a..266cd01 100644
--- a/mk/rte.lib.mk
+++ b/mk/rte.lib.mk
@@ -172,7 +172,7 @@ clean: _postclean
.PHONY: doclean
doclean:
$(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
- $(CMDS-all) $(INSTALL-FILES-all)
+ $(CMDS-all) .$(LIB).cmd $(INSTALL-FILES-all)
$(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
include $(RTE_SDK)/mk/internal/rte.compile-post.mk
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH 2/3] mk: clean app.map files
2017-02-22 20:54 [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Ferruh Yigit
@ 2017-02-22 20:54 ` Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 3/3] mk: clean generated pmd.c pmd.o files Ferruh Yigit
2017-02-28 16:48 ` [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Thomas Monjalon
2 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2017-02-22 20:54 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev, Ferruh Yigit
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
mk/rte.app.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/rte.app.mk b/mk/rte.app.mk
index 92f3635..d46a33e 100644
--- a/mk/rte.app.mk
+++ b/mk/rte.app.mk
@@ -272,7 +272,7 @@ clean: _postclean
.PHONY: doclean
doclean:
$(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
- $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd
+ $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd $(APP).map
include $(RTE_SDK)/mk/internal/rte.compile-post.mk
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH 3/3] mk: clean generated pmd.c pmd.o files
2017-02-22 20:54 [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 2/3] mk: clean app.map files Ferruh Yigit
@ 2017-02-22 20:54 ` Ferruh Yigit
2017-02-28 16:48 ` [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Thomas Monjalon
2 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2017-02-22 20:54 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev, Ferruh Yigit
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
mk/rte.lib.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/rte.lib.mk b/mk/rte.lib.mk
index 266cd01..987553d 100644
--- a/mk/rte.lib.mk
+++ b/mk/rte.lib.mk
@@ -172,7 +172,7 @@ clean: _postclean
.PHONY: doclean
doclean:
$(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
- $(CMDS-all) .$(LIB).cmd $(INSTALL-FILES-all)
+ $(CMDS-all) .$(LIB).cmd $(INSTALL-FILES-all) *.pmd.c *.pmd.o
$(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
include $(RTE_SDK)/mk/internal/rte.compile-post.mk
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files
2017-02-22 20:54 [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 2/3] mk: clean app.map files Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 3/3] mk: clean generated pmd.c pmd.o files Ferruh Yigit
@ 2017-02-28 16:48 ` Thomas Monjalon
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2017-02-28 16:48 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: dev
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
> mk/rte.lib.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Series merged and applied as one commit, thanks
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-02-28 16:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-22 20:54 [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 2/3] mk: clean app.map files Ferruh Yigit
2017-02-22 20:54 ` [dpdk-dev] [PATCH 3/3] mk: clean generated pmd.c pmd.o files Ferruh Yigit
2017-02-28 16:48 ` [dpdk-dev] [PATCH 1/3] mk: clean .lib.cmd files Thomas Monjalon
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).