X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fvpp.am;h=60be623627ba2e43370f618a522428451063cf70;hb=e6446a3cd5f4b4faab87127c1a310e3c7fbf0e60;hp=9a07cefe2c06afaff1be6f7d9a64e948559991a3;hpb=8a19f12a0cfe6d611f6e266931af691fb69a74ad;p=vpp.git diff --git a/src/vpp.am b/src/vpp.am index 9a07cefe2c0..60be623627b 100644 --- a/src/vpp.am +++ b/src/vpp.am @@ -11,14 +11,16 @@ # See the License for the specific language governing permissions and # limitations under the License. -bin_PROGRAMS += bin/vpp +bin_PROGRAMS += bin/vpp bin_vpp_SOURCES = \ vpp/vnet/main.c \ vpp/app/vpe_cli.c \ vpp/app/version.c \ vpp/oam/oam.c \ - vpp/stats/stats.c + vpp/oam/oam_api.c \ + vpp/stats/stats.c \ + vpp/stats/stat_segment.c bin_vpp_SOURCES += \ vpp/api/api.c \ @@ -43,10 +45,13 @@ nobase_include_HEADERS += \ vpp/api/vpe_all_api_h.h \ vpp/api/vpe_msg_enum.h \ vpp/stats/stats.api.h \ + vpp/oam/oam.api.h \ vpp/api/vpe.api.h -API_FILES += vpp/api/vpe.api -API_FILES += vpp/stats/stats.api +API_FILES += \ + vpp/api/vpe.api \ + vpp/stats/stats.api \ + vpp/oam/oam.api BUILT_SOURCES += .version @@ -126,6 +131,31 @@ bin_summary_stats_client_LDADD = \ libvppinfra.la \ -lpthread -lm -lrt +bin_PROGRAMS += bin/vpp_get_stats + +bin_vpp_get_stats_SOURCES = \ + vpp/app/vpp_get_stats.c + +bin_vpp_get_stats_LDADD = \ + libvppapiclient.la \ + libvlibmemoryclient.la \ + libsvm.la \ + libvppinfra.la \ + -lpthread -lm -lrt + +bin_PROGRAMS += bin/vpp_prometheus_export + +bin_vpp_prometheus_export_SOURCES = \ + vpp/app/vpp_prometheus_export.c + +bin_vpp_prometheus_export_LDADD = \ + libvppapiclient.la \ + libvlibmemoryclient.la \ + libsvm.la \ + libvppinfra.la \ + -lpthread -lm -lrt + + bin_PROGRAMS += bin/vpp_get_metrics bin_vpp_get_metrics_SOURCES = \