f632ab5e3b
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 <vlavor@cisco.com> Change-Id: I1b93eaf67214e1fe0567d43409763882caea6416
18 lines
231 B
Makefile
18 lines
231 B
Makefile
# 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
|