From d995c757f05f78aa759b0a65c0a7e38088e690a9 Mon Sep 17 00:00:00 2001 From: Padraig Connolly Date: Tue, 29 Nov 2016 17:17:20 +0000 Subject: vppctl: bash completion for vppctl commands Added bash completion that will include all commands from build time *Script takes list of commands generated by doxygen-siphon-list *Configured doxygen-siphon makefile to generate just cli commands *List of cli commands put in /usr/share/vpp *Stopped siphon using doxygen bootstrap, uses main bootstrap instead *Added rpm/deb check for installation of packages, separate from bootstrap *NOTE: Once you have installed the vpp .deb/.rpm package you will have to restart bash Change-Id: Ie503e80d5177481f6e7dbe59378f2e0d76f29152 Signed-off-by: Padraig Connolly --- build-root/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build-root/Makefile') diff --git a/build-root/Makefile b/build-root/Makefile index 6e26e90e..9fe03d66 100644 --- a/build-root/Makefile +++ b/build-root/Makefile @@ -1141,7 +1141,8 @@ package_wipe_script = \ @message=$(if $(is_build_tool),"Wiping build $(PACKAGE)","Wiping build/install $(PACKAGE)") ; \ $(call build_msg_fn,$$message) ; \ $(BUILD_ENV) ; \ - rm -rf $(if $(is_build_tool),$(PACKAGE_BUILD_DIR),$(PACKAGE_INSTALL_DIR) $(PACKAGE_BUILD_DIR)) + rm -rf $(if $(is_build_tool),$(PACKAGE_BUILD_DIR),$(PACKAGE_INSTALL_DIR) $(PACKAGE_BUILD_DIR)); \ + rm -f $(MU_BUILD_ROOT_DIR)/docs/siphon_docs/clicmd.itemlist .PHONY: %-wipe %-wipe: -- cgit 1.2.3-korg