9cfbd3b786
Added syslogs Added support for symlinks Relocated make commands in a local Makefile Dumping stats on index instead of paths Updated README Added go.mod and go.sum with relevant dependencies for the module Type: fix Change-Id: I2c91317939b2f4d765771ab7038372ae27d3109d Signed-off-by: Arthur de Kerhor <arthurdekerhor@gmail.com>
26 lines
297 B
Makefile
26 lines
297 B
Makefile
|
|
# Build vpp_stats_fs
|
|
|
|
.PHONY: install
|
|
install:
|
|
@./install.sh install
|
|
|
|
.PHONY: start
|
|
start:
|
|
@./install.sh start
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@./install.sh clean
|
|
|
|
.PHONY: help
|
|
help:
|
|
@./install.sh help
|
|
|
|
.PHONY: force-unmount
|
|
force-unmount:
|
|
@./install.sh unmount
|
|
|
|
.PHONY: stop
|
|
stop:
|
|
@./install.sh stop
|