diff options
author | Damjan Marion <damarion@cisco.com> | 2017-06-20 16:35:29 +0200 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2017-06-24 15:14:14 +0000 |
commit | aad20988b6a0a5058e520948d2a5835cfbc3b523 (patch) | |
tree | 7d795028582c31ea987666375751b0e31e2454c5 /src/vpp.am | |
parent | b2861e8fb6855e9924887e5743d65ebbfbc6d7d2 (diff) |
Rewrite vppctl in C
- removes python dependency
- removes vpp_api_test dependency
- communicates over unix socket
- properly detects terminal size and type
- responds on terminal resize
Change-Id: I46c0a49f9b5f9ef8a0a31faec4fc5d49aa3ee02e
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vpp.am')
-rw-r--r-- | src/vpp.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vpp.am b/src/vpp.am index 1c95949aa3a..614bd26abda 100644 --- a/src/vpp.am +++ b/src/vpp.am @@ -85,6 +85,10 @@ bin_vpp_LDADD = \ bin_vpp_LDFLAGS = -Wl,--export-dynamic +bin_PROGRAMS += bin/vppctl +bin_vppctl_SOURCES = vpp/app/vppctl.c +bin_vppctl_LDADD = libvppinfra.la + if ENABLE_TESTS noinst_PROGRAMS += bin/test_client |