aarch64 CPU arch / ThunderX platform initial support
[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 @DPDK@ @IPSEC@ @VCGN@ @IPV6SR@
17
18 noinst_PROGRAMS = 
19 BUILT_SOURCES =
20 bin_PROGRAMS = 
21 CLEANFILES = 
22 lib_LTLIBRARIES =
23
24 bin_PROGRAMS += vpp
25
26 vpp_SOURCES =                                   \
27   vnet/main.c                                   \
28   app/vpe_cli.c                                 \
29   app/version.c                                 \
30   oam/oam.c                                     \
31   stats/stats.c
32
33 vpp_SOURCES +=                                  \
34   api/api.c                                     \
35   api/custom_dump.c
36
37 # comment out to disable stats upload to gmond 
38
39 vpp_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.h
53
54 app/version.o:  app/version.h
55
56 .PHONY: app/version.h
57
58 app/version.h:
59         @echo "  VERSION " $@ 
60         @echo "#define VPP_BUILD_DATE \"$$(date)\"" > $@
61         @echo "#define VPP_BUILD_USER \"$$(whoami)\"" >> $@
62         @echo "#define VPP_BUILD_HOST \"$$(hostname)\"" >> $@
63         @echo "#define VPP_BUILD_TOPDIR \"$$(git rev-parse --show-toplevel)\""  >> $@
64         @echo "#define VPP_BUILD_VER \"$$(../../scripts/version)\"" >> $@
65
66 vpp_LDADD = -lvlibapi -lvlibmemory  -lvlib_unix -lvlib
67
68 vpp_LDADD += -l:libvnet.a
69
70 vpp_LDADD += -lsvm -lsvmdb -lrt
71
72 vpp_LDADD += -lvnetplugin
73
74 if WITH_DPDK
75 vpp_LDADD += -l:libdpdk.a
76 endif
77
78 vpp_LDADD += -lvppinfra -lm -lpthread -ldl
79
80 if WITH_IPV6SR
81   vpp_LDADD += -lcrypto
82 endif
83
84 SUFFIXES = .api.h .api
85
86 %.api.h: %.api
87         @echo "  APIGEN  " $@ ;                                 \
88         @mkdir -p `dirname $@` ;                                \
89         $(CC) $(CPPFLAGS) -E -P -C -x c $^                      \
90         | vppapigen --input - --output $@ --show-name $@
91
92
93 noinst_PROGRAMS += test_client test_ha
94
95 test_client_SOURCES = api/test_client.c
96 test_client_LDADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra \
97         -lpthread -lm -lrt
98
99 test_ha_SOURCES = api/test_ha.c
100 test_ha_LDADD = -lvlibmemoryclient -lvlibapi -lsvmdb -lsvm -lvppinfra \
101                 -lpthread -lm -lrt
102
103 noinst_PROGRAMS += summary_stats_client
104
105 summary_stats_client_SOURCES = api/summary_stats_client.c
106 summary_stats_client_LDADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra \
107         -lpthread -lm -lrt