diff options
author | Arthur de Kerhor <arthurdekerhor@gmail.com> | 2021-03-24 07:32:07 -0700 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2021-06-03 07:25:04 +0000 |
commit | 9cfbd3b7869db3ca5131c6fd0c0f77b787fa4312 (patch) | |
tree | 2c43941190db870ccb73a54df420756197bd330c /extras/vpp_stats_fs/Makefile | |
parent | 2f64790c596036877d1fc70a1cae0f96b655af19 (diff) |
misc: bug fixes and improvements for stats Fuse fs
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>
Diffstat (limited to 'extras/vpp_stats_fs/Makefile')
-rw-r--r-- | extras/vpp_stats_fs/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extras/vpp_stats_fs/Makefile b/extras/vpp_stats_fs/Makefile new file mode 100644 index 00000000000..0aded0c40c3 --- /dev/null +++ b/extras/vpp_stats_fs/Makefile @@ -0,0 +1,26 @@ + +# 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
\ No newline at end of file |