blob: 405bed95fbaf8926f87a55f43b735b932161186a [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001# 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
Damjan Marion0eca04d2017-01-03 20:11:35 +010015lib_LTLIBRARIES += libvlib.la
Damjan Marion01914ce2017-09-14 19:04:50 +020016libvlib_la_LIBADD = libvppinfra.la -ldl -lpthread
Damjan Marion8db1c762017-01-04 16:07:54 +010017libvlib_la_DEPENDENCIES = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +010018
19BUILT_SOURCES += vlib/config.h
20
21vlib/config.h:
Damjan Marion0eca04d2017-01-03 20:11:35 +010022 @echo "#define __PRE_DATA_SIZE" @PRE_DATA_SIZE@ > $@
Damjan Marion7cd468a2016-12-19 23:05:39 +010023
24libvlib_la_SOURCES = \
25 vlib/buffer.c \
Damjan Marion878c6092017-01-04 13:19:27 +010026 vlib/buffer_serialize.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +010027 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 \
Damjan Marion3b64d632017-09-08 12:26:12 +020035 vlib/linux/pci.c \
36 vlib/linux/physmem.c \
Damjan Marion1ba0fa42018-03-04 17:19:08 +010037 vlib/linux/vfio.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +010038 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 \
Damjan Marion7cd468a2016-12-19 23:05:39 +010044 vlib/threads.c \
45 vlib/threads_cli.c \
46 vlib/trace.c
47
48nobase_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 \
Damjan Marion1ba0fa42018-03-04 17:19:08 +010063 vlib/linux/vfio.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +010064 vlib/main.h \
65 vlib/mc.h \
66 vlib/node_funcs.h \
67 vlib/node.h \
68 vlib/physmem.h \
69 vlib/pci/pci.h \
70 vlib/pci/pci_config.h \
Damjan Marion49d66f12017-07-20 18:10:35 +020071 vlib/physmem_funcs.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +010072 vlib/threads.h \
73 vlib/trace_funcs.h \
74 vlib/trace.h \
75 vlib/vlib.h
76
Damjan Marion0eca04d2017-01-03 20:11:35 +010077libvlib_la_SOURCES += \
Damjan Marion7cd468a2016-12-19 23:05:39 +010078 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 \
Damjan Marion7cd468a2016-12-19 23:05:39 +010085 vlib/unix/util.c
86
87nobase_include_HEADERS += \
88 vlib/unix/cj.h \
89 vlib/unix/mc_socket.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +010090 vlib/unix/plugin.h \
91 vlib/unix/unix.h
Damjan Marion0eca04d2017-01-03 20:11:35 +010092
Damjan Marion7cd468a2016-12-19 23:05:39 +010093noinst_PROGRAMS += vlib_unix
94
95vlib_unix_SOURCES = \
96 examples/vlib/main_stub.c \
97 examples/vlib/mc_test.c
98
Damjan Marion0eca04d2017-01-03 20:11:35 +010099vlib_unix_LDADD = libvlib.la \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100100 libvppinfra.la -lpthread -lm -ldl -lrt
Damjan Marion7cd468a2016-12-19 23:05:39 +0100101
102# vi:syntax=automake