blob: 17b23dfd1a8a0f50d674694154378e0c08c88d3c [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 \
34 vlib/init.c \
35 vlib/main.c \
36 vlib/mc.c \
37 vlib/node.c \
38 vlib/node_cli.c \
39 vlib/node_format.c \
40 vlib/threads.c \
41 vlib/trace.c
42
43if WITH_DPDK
44 libvlib_la_SOURCES += vlib/dpdk_buffer.c
45else
46 libvlib_la_SOURCES += vlib/buffer.c
47endif
48
49nobase_include_HEADERS = \
50 vlib/buffer_funcs.h \
51 vlib/buffer_node.h \
52 vlib/buffer.h \
53 vlib/cli.h \
54 vlib/cli_funcs.h \
55 vlib/config.h \
56 vlib/counter.h \
57 vlib/defs.h \
58 vlib/error_funcs.h \
59 vlib/error.h \
60 vlib/format_funcs.h \
61 vlib/global_funcs.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 \
Damjan Mariona42cd342016-04-13 18:03:20 +020068 vlib/pci/pci.h \
69 vlib/pci/pci_config.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 vlib/threads.h \
71 vlib/trace_funcs.h \
72 vlib/trace.h \
73 vlib/vlib.h
74
75lib_LTLIBRARIES += libvlib_unix.la
76
77libvlib_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 \
Damjan Mariona42cd342016-04-13 18:03:20 +020086 vlib/unix/pci.c \
87 vlib/unix/util.c
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
89nobase_include_HEADERS += \
90 vlib/unix/cj.h \
91 vlib/unix/mc_socket.h \
92 vlib/unix/physmem.h \
Damjan Mariona42cd342016-04-13 18:03:20 +020093 vlib/unix/pci.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 vlib/unix/plugin.h \
95 vlib/unix/unix.h
96
Damjan Marion2c29d752015-12-18 10:26:56 +010097if !WITH_DPDK
Ed Warnickecb9cada2015-12-08 15:45:58 -070098noinst_PROGRAMS = vlib_unix
99
100vlib_unix_SOURCES = \
101 example/main_stub.c \
102 example/mc_test.c
103
104vlib_unix_LDADD = libvlib_unix.la libvlib.la \
105 -lvppinfra -lpthread -lm -ldl -lrt
Damjan Marion2c29d752015-12-18 10:26:56 +0100106endif