From f632ab5e3ba1882106975814597a8e39507d8873 Mon Sep 17 00:00:00 2001 From: Vladimir Lavor Date: Fri, 11 Dec 2020 10:28:49 +0100 Subject: misc: vpptop makefile target Type: feature Added make target to install VPPTop - real-time viewer of VPP metrics. New targets in /extras/vpptop/Makefile: * make start - starts the installed VPPTop binary * make install - does the installation using the local VPP API * make cleanup - removes the VPPTop local directory * make help - prints the VPPTop help info Signed-off-by: Vladimir Lavor Change-Id: I1b93eaf67214e1fe0567d43409763882caea6416 --- extras/vpptop/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 extras/vpptop/Makefile (limited to 'extras/vpptop/Makefile') diff --git a/extras/vpptop/Makefile b/extras/vpptop/Makefile new file mode 100644 index 00000000000..49e4e0fc056 --- /dev/null +++ b/extras/vpptop/Makefile @@ -0,0 +1,18 @@ +# Manage VPPTop + +.PHONY: install +install: + @ cd ../../ && $(MAKE) json-api-files + @./vpptop.sh install + +.PHONY: start +start: + @./vpptop.sh start + +.PHONY: cleanup +cleanup: + @./vpptop.sh cleanup + +.PHONY: help +help: + @./vpptop.sh help \ No newline at end of file -- cgit 1.2.3-korg