vlib: move linux-specific code to vlib/linux
[vpp.git] / src / vlib.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
15 lib_LTLIBRARIES += libvlib.la
16 libvlib_la_LIBADD = libvppinfra.la -ldl -lpthread -lnuma
17 libvlib_la_DEPENDENCIES = libvppinfra.la
18
19 BUILT_SOURCES += vlib/config.h
20
21 vlib/config.h:
22         @echo "#define __PRE_DATA_SIZE" @PRE_DATA_SIZE@ > $@
23
24 libvlib_la_SOURCES =                            \
25   vlib/buffer.c                                 \
26   vlib/buffer_serialize.c                       \
27   vlib/cli.c                                    \
28   vlib/cli.h                                    \
29   vlib/config.h                                 \
30   vlib/counter.c                                \
31   vlib/error.c                                  \
32   vlib/format.c                                 \
33   vlib/i2c.c                                    \
34   vlib/init.c                                   \
35   vlib/linux/pci.c                              \
36   vlib/linux/physmem.c                          \
37   vlib/linux/sysfs.c                            \
38   vlib/main.c                                   \
39   vlib/mc.c                                     \
40   vlib/node.c                                   \
41   vlib/node_cli.c                               \
42   vlib/node_format.c                            \
43   vlib/pci/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/linux/sysfs.h                            \
64   vlib/linux/syscall.h                          \
65   vlib/main.h                                   \
66   vlib/mc.h                                     \
67   vlib/node_funcs.h                             \
68   vlib/node.h                                   \
69   vlib/physmem.h                                \
70   vlib/pci/pci.h                                \
71   vlib/pci/pci_config.h                         \
72   vlib/physmem_funcs.h                          \
73   vlib/threads.h                                \
74   vlib/trace_funcs.h                            \
75   vlib/trace.h                                  \
76   vlib/vlib.h
77
78 libvlib_la_SOURCES +=                           \
79   vlib/unix/cj.c                                \
80   vlib/unix/cli.c                               \
81   vlib/unix/input.c                             \
82   vlib/unix/main.c                              \
83   vlib/unix/mc_socket.c                         \
84   vlib/unix/plugin.c                            \
85   vlib/unix/plugin.h                            \
86   vlib/unix/util.c
87
88 nobase_include_HEADERS +=                       \
89   vlib/unix/cj.h                                \
90   vlib/unix/mc_socket.h                         \
91   vlib/unix/plugin.h                            \
92   vlib/unix/unix.h
93
94 noinst_PROGRAMS += vlib_unix
95
96 vlib_unix_SOURCES =                             \
97   examples/vlib/main_stub.c                     \
98   examples/vlib/mc_test.c
99
100 vlib_unix_LDADD = libvlib.la \
101                   libvppinfra.la -lpthread -lm -ldl -lrt
102
103 # vi:syntax=automake