Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 1 | # Copyright (c) 2016 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
Dave Barach | 2c35e58 | 2017-04-03 10:22:17 -0400 | [diff] [blame] | 14 | bin_PROGRAMS += c2cpel cpelatency cpeldump cpelinreg cpelstate elog_merge |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 15 | |
| 16 | lib_LTLIBRARIES += libcperf.la |
| 17 | |
| 18 | libcperf_la_SOURCES = \ |
| 19 | tools/perftool/delsvec.c \ |
| 20 | tools/perftool/linreg.c \ |
| 21 | tools/perftool/props.c \ |
| 22 | tools/perftool/cpel_util.c |
| 23 | |
| 24 | PERFTOOL_LIBS = libcperf.la libvppinfra.la -lm |
| 25 | |
| 26 | c2cpel_SOURCES = tools/perftool/c2cpel.c |
| 27 | c2cpel_LDADD = $(PERFTOOL_LIBS) |
| 28 | |
| 29 | cpelatency_SOURCES = tools/perftool/cpelatency.c |
| 30 | cpelatency_LDADD = $(PERFTOOL_LIBS) |
| 31 | |
| 32 | cpeldump_SOURCES = tools/perftool/cpeldump.c |
| 33 | cpeldump_LDADD = $(PERFTOOL_LIBS) |
| 34 | |
| 35 | cpelinreg_SOURCES = tools/perftool/cpelinreg.c |
| 36 | cpelinreg_LDADD = $(PERFTOOL_LIBS) |
| 37 | |
| 38 | cpelstate_SOURCES = tools/perftool/cpelstate.c |
| 39 | cpelstate_LDADD = $(PERFTOOL_LIBS) |
| 40 | |
Dave Barach | 2c35e58 | 2017-04-03 10:22:17 -0400 | [diff] [blame] | 41 | elog_merge_SOURCES = tools/perftool/elog_merge.c |
| 42 | elog_merge_LDADD = $(PERFTOOL_LIBS) |
| 43 | |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 44 | # vi:syntax=automake |