blob: 274756719c13304f1d52c3762a6eefca84d6721c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001# 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
14AUTOMAKE_OPTIONS = foreign subdir-objects
15
16AM_CFLAGS = -Wall @DPDK@
17
18PRE_DATA_SIZE=@PRE_DATA_SIZE@
19
20lib_LTLIBRARIES = libvlib.la
21
22BUILT_SOURCES = vlib/config.h
23
24vlib/config.h:
25 echo "#define __PRE_DATA_SIZE" $(PRE_DATA_SIZE) > $@
26
27libvlib_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 \
Damjan Marionb4d89272016-05-12 22:14:45 +020034 vlib/i2c.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -070035 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 \
Damjan Marion5a206ea2016-05-12 22:11:03 +020041 vlib/pci/pci.c \
42 vlib/pci/linux_pci.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -070043 vlib/threads.c \
44 vlib/trace.c
45
46if WITH_DPDK
47 libvlib_la_SOURCES += vlib/dpdk_buffer.c
48else
49 libvlib_la_SOURCES += vlib/buffer.c
50endif
51
52nobase_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 \
Damjan Marionb4d89272016-05-12 22:14:45 +020065 vlib/i2c.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 vlib/init.h \
67 vlib/main.h \
68 vlib/mc.h \
69 vlib/node_funcs.h \
70 vlib/node.h \
71 vlib/physmem.h \
Damjan Mariona42cd342016-04-13 18:03:20 +020072 vlib/pci/pci.h \
73 vlib/pci/pci_config.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 vlib/threads.h \
75 vlib/trace_funcs.h \
76 vlib/trace.h \
77 vlib/vlib.h
78
79lib_LTLIBRARIES += libvlib_unix.la
80
81libvlib_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 \
Damjan Mariona42cd342016-04-13 18:03:20 +020090 vlib/unix/util.c
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
92nobase_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
Damjan Marion2c29d752015-12-18 10:26:56 +010099if !WITH_DPDK
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100noinst_PROGRAMS = vlib_unix
101
102vlib_unix_SOURCES = \
103 example/main_stub.c \
104 example/mc_test.c
105
106vlib_unix_LDADD = libvlib_unix.la libvlib.la \
107 -lvppinfra -lpthread -lm -ldl -lrt
Damjan Marion2c29d752015-12-18 10:26:56 +0100108endif