3da0a3abbbb7d4d333a36c468ee9d73b80bfdb30
[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/buffer.c                                 \
29   vlib/cli.c                                    \
30   vlib/cli.h                                    \
31   vlib/config.h                                 \
32   vlib/counter.c                                \
33   vlib/error.c                                  \
34   vlib/format.c                                 \
35   vlib/i2c.c                                    \
36   vlib/init.c                                   \
37   vlib/main.c                                   \
38   vlib/mc.c                                     \
39   vlib/node.c                                   \
40   vlib/node_cli.c                               \
41   vlib/node_format.c                            \
42   vlib/pci/pci.c                                \
43   vlib/pci/linux_pci.c                          \
44   vlib/threads.c                                \
45   vlib/threads_cli.c                            \
46   vlib/trace.c
47
48 nobase_include_HEADERS =                        \
49   vlib/buffer_funcs.h                           \
50   vlib/buffer_node.h                            \
51   vlib/buffer.h                                 \
52   vlib/cli.h                                    \
53   vlib/cli_funcs.h                              \
54   vlib/config.h                                 \
55   vlib/counter.h                                \
56   vlib/defs.h                                   \
57   vlib/error_funcs.h                            \
58   vlib/error.h                                  \
59   vlib/format_funcs.h                           \
60   vlib/global_funcs.h                           \
61   vlib/i2c.h                                    \
62   vlib/init.h                                   \
63   vlib/main.h                                   \
64   vlib/mc.h                                     \
65   vlib/node_funcs.h                             \
66   vlib/node.h                                   \
67   vlib/physmem.h                                \
68   vlib/pci/pci.h                                \
69   vlib/pci/pci_config.h                         \
70   vlib/threads.h                                \
71   vlib/trace_funcs.h                            \
72   vlib/trace.h                                  \
73   vlib/vlib.h
74
75 lib_LTLIBRARIES += libvlib_unix.la
76
77 libvlib_unix_la_SOURCES =                       \
78   vlib/unix/cj.c                                \
79   vlib/unix/cli.c                               \
80   vlib/unix/input.c                             \
81   vlib/unix/main.c                              \
82   vlib/unix/mc_socket.c                         \
83   vlib/unix/plugin.c                            \
84   vlib/unix/plugin.h                            \
85   vlib/unix/physmem.c                           \
86   vlib/unix/util.c
87
88 nobase_include_HEADERS +=                       \
89   vlib/unix/cj.h                                \
90   vlib/unix/mc_socket.h                         \
91   vlib/unix/physmem.h                           \
92   vlib/unix/plugin.h                            \
93   vlib/unix/unix.h
94     
95 if !WITH_DPDK
96 noinst_PROGRAMS = vlib_unix 
97
98 vlib_unix_SOURCES =                             \
99   example/main_stub.c                           \
100   example/mc_test.c
101
102 vlib_unix_LDADD = libvlib_unix.la libvlib.la \
103                   -lvppinfra -lpthread -lm -ldl -lrt
104 endif