diff options
author | Padraig Connolly <padraig.connolly@intel.com> | 2016-11-29 17:17:20 +0000 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2017-01-09 15:20:49 +0000 |
commit | d995c757f05f78aa759b0a65c0a7e38088e690a9 (patch) | |
tree | 5055f3c18d184f20d949817f2a33e7e52006cf53 /build-root/Makefile | |
parent | 0d3c1cc7626ac39f25975ebf9d92ba903d470f79 (diff) |
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 <padraig.connolly@intel.com>
Diffstat (limited to 'build-root/Makefile')
-rw-r--r-- | build-root/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-root/Makefile b/build-root/Makefile index 6e26e90e4dd..9fe03d66244 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: |