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:
6 # http://www.apache.org/licenses/LICENSE-2.0
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.
14 AUTOMAKE_OPTIONS = foreign subdir-objects
16 AM_CFLAGS = -Wall @DPDK@
18 PRE_DATA_SIZE=@PRE_DATA_SIZE@
20 lib_LTLIBRARIES = libvlib.la
22 BUILT_SOURCES = vlib/config.h
25 echo "#define __PRE_DATA_SIZE" $(PRE_DATA_SIZE) > $@
27 libvlib_la_SOURCES = \
42 vlib/pci/linux_pci.c \
48 libvlib_la_SOURCES += vlib/dpdk_buffer.c
50 libvlib_la_SOURCES += vlib/buffer.c
53 nobase_include_HEADERS = \
74 vlib/pci/pci_config.h \
80 lib_LTLIBRARIES += libvlib_unix.la
82 libvlib_unix_la_SOURCES = \
87 vlib/unix/mc_socket.c \
93 nobase_include_HEADERS += \
95 vlib/unix/mc_socket.h \
101 noinst_PROGRAMS = vlib_unix
103 vlib_unix_SOURCES = \
104 example/main_stub.c \
107 vlib_unix_LDADD = libvlib_unix.la libvlib.la \
108 -lvppinfra -lpthread -lm -ldl -lrt