diff options
Diffstat (limited to 'vppctl')
-rw-r--r-- | vppctl/Makefile.am | 2 | ||||
-rw-r--r-- | vppctl/configure.ac | 4 | ||||
-rwxr-xr-x | vppctl/vppctl | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/vppctl/Makefile.am b/vppctl/Makefile.am new file mode 100644 index 00000000000..d556cb2aa5c --- /dev/null +++ b/vppctl/Makefile.am @@ -0,0 +1,2 @@ + +dist_bin_SCRIPTS = vppctl diff --git a/vppctl/configure.ac b/vppctl/configure.ac new file mode 100644 index 00000000000..0421019452a --- /dev/null +++ b/vppctl/configure.ac @@ -0,0 +1,4 @@ +AC_INIT([vppctl], [1.0]) +AM_INIT_AUTOMAKE([foreign -Wall -Werror]) +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT diff --git a/vppctl/vppctl b/vppctl/vppctl new file mode 100755 index 00000000000..b789493f2be --- /dev/null +++ b/vppctl/vppctl @@ -0,0 +1,2 @@ +#!/bin/bash +echo exec ${@} | vpe_api_test | sed 's/vat# //g' |