Initial commit of vpp code.
[vpp.git] / vpp / Makefile.am
1 # Copyright (c) 2015 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 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 AM_CFLAGS = -Wall @Q_PLATFORM_DEFINE@ @Q_PLATFORM_PLUGPATH@ @DPDK@
17
18 noinst_PROGRAMS = 
19 BUILT_SOURCES =
20 bin_PROGRAMS = 
21 CLEANFILES = 
22 lib_LTLIBRARIES =
23
24 bin_PROGRAMS += vpe
25
26 vpe_SOURCES =                                   \
27   vnet/main.c                                   \
28   app/vpe_cli.c                                 \
29   app/version.c                                 \
30   oam/oam.c                                     \
31   stats/stats.c
32
33 vpe_SOURCES +=                                  \
34   api/api.c                                     \
35   api/custom_dump.c
36
37 # comment out to disable stats upload to gmond 
38
39 vpe_SOURCES +=                                  \
40   api/gmon.c    
41
42 nobase_include_HEADERS =                        \
43   api/vpe_all_api_h.h                           \
44   api/vpe_msg_enum.h                            \
45   api/vpe.api.h
46
47 # install the API definition, so we can produce java bindings, etc.
48
49 apidir = $(prefix)/api
50 api_DATA = api/vpe.api
51
52 BUILT_SOURCES += api/vpe.api.h app/version.c
53
54 .PHONY: app/version.c
55
56 app/version.c:
57         @pushd ../../../vpp ;                                   \
58         branch=`git rev-parse --abbrev-ref HEAD` ;              \
59         popd ;                                                  \
60         if [ x$$GITTAG = "x" ] ; then                           \
61            GITTAG=$$USER-private ;                              \
62         fi ;                                                    \
63         vppversion -p vpe -b $${branch}@$${GITTAG} -o $@
64
65 vpe_LDADD = -lvlibapi -lvlibmemory  -lvlib_unix -lvlib 
66
67 vpe_LDADD += -l:libvnet.a
68
69 vpe_LDADD += -lsvm -lsvmdb -lrt
70
71 vpe_LDADD += -lvnetplugin
72
73 if WITH_DPDK
74 vpe_LDADD += -l:libdpdk.a
75 endif
76
77 # These go last
78
79 vpe_LDADD += -lvppinfra -lm -lpthread -lcrypto -ldl
80
81 SUFFIXES = .api.h .api
82
83 %.api.h: %.api
84         @echo "  APIGEN  " $@ ;                                 \
85         @mkdir -p `dirname $@` ;                                \
86         $(CC) $(CPPFLAGS) -E -P -C -x c $^                      \
87         | vppapigen --input - --output $@ --show-name $@
88
89
90 noinst_PROGRAMS += test_client test_ha
91
92 test_client_SOURCES = api/test_client.c
93 test_client_LDADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra \
94         -lpthread -lm -lrt
95
96 test_ha_SOURCES = api/test_ha.c
97 test_ha_LDADD = -lvlibmemoryclient -lvlibapi -lsvmdb -lsvm -lvppinfra \
98                 -lpthread -lm -lrt
99
100 noinst_PROGRAMS += summary_stats_client
101
102 summary_stats_client_SOURCES = api/summary_stats_client.c
103 summary_stats_client_LDADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra \
104         -lpthread -lm -lrt