Reorganize source tree to use single autotools instance
[vpp.git] / src / perftool.am
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
14 bin_PROGRAMS += c2cpel cpelatency cpeldump cpelinreg cpelstate
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
41 # vi:syntax=automake