Move pkt replication counter to the opaque2 cache line
[vpp.git] / vlib / 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@
17
18 PRE_DATA_SIZE=@PRE_DATA_SIZE@
19
20 lib_LTLIBRARIES = libvlib.la
21
22 BUILT_SOURCES = vlib/config.h
23
24 vlib/config.h:
25         echo "#define __PRE_DATA_SIZE" $(PRE_DATA_SIZE) > $@
26
27 libvlib_la_SOURCES =                            \
28   vlib/cli.c                                    \
29   vlib/cli.h                                    \
30   vlib/config.h                                 \
31   vlib/counter.c                                \
32   vlib/error.c                                  \
33   vlib/format.c                                 \
34   vlib/i2c.c                                    \
35   vlib/init.c                                   \
36   vlib/main.c                                   \
37   vlib/mc.c                                     \
38   vlib/node.c                                   \
39   vlib/node_cli.c                               \
40   vlib/node_format.c                            \
41   vlib/pci/pci.c                                \
42   vlib/pci/linux_pci.c                          \
43   vlib/threads.c                                \
44   vlib/trace.c
45
46 if WITH_DPDK
47   libvlib_la_SOURCES += vlib/dpdk_buffer.c
48 else
49   libvlib_la_SOURCES += vlib/buffer.c
50 endif
51
52 nobase_include_HEADERS =                        \
53   vlib/buffer_funcs.h                           \
54   vlib/buffer_node.h                            \
55   vlib/buffer.h                                 \
56   vlib/cli.h                                    \
57   vlib/cli_funcs.h                              \
58   vlib/config.h                                 \
59   vlib/counter.h                                \
60   vlib/defs.h                                   \
61   vlib/error_funcs.h                            \
62   vlib/error.h                                  \
63   vlib/format_funcs.h                           \
64   vlib/global_funcs.h                           \
65   vlib/i2c.h                                    \
66   vlib/init.h                                   \
67   vlib/main.h                                   \
68   vlib/mc.h                                     \
69   vlib/node_funcs.h                             \
70   vlib/node.h                                   \
71   vlib/physmem.h                                \
72   vlib/pci/pci.h                                \
73   vlib/pci/pci_config.h                         \
74   vlib/threads.h                                \
75   vlib/trace_funcs.h                            \
76   vlib/trace.h                                  \
77   vlib/vlib.h
78
79 lib_LTLIBRARIES += libvlib_unix.la
80
81 libvlib_unix_la_SOURCES =                       \
82   vlib/unix/cj.c                                \
83   vlib/unix/cli.c                               \
84   vlib/unix/input.c                             \
85   vlib/unix/main.c                              \
86   vlib/unix/mc_socket.c                         \
87   vlib/unix/plugin.c                            \
88   vlib/unix/plugin.h                            \
89   vlib/unix/physmem.c                           \
90   vlib/unix/util.c
91
92 nobase_include_HEADERS +=                       \
93   vlib/unix/cj.h                                \
94   vlib/unix/mc_socket.h                         \
95   vlib/unix/physmem.h                           \
96   vlib/unix/plugin.h                            \
97   vlib/unix/unix.h
98     
99 if !WITH_DPDK
100 noinst_PROGRAMS = vlib_unix 
101
102 vlib_unix_SOURCES =                             \
103   example/main_stub.c                           \
104   example/mc_test.c
105
106 vlib_unix_LDADD = libvlib_unix.la libvlib.la \
107                   -lvppinfra -lpthread -lm -ldl -lrt
108 endif