Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame^] | 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 | libvlibdir = ${libdir} |
| 16 | libvlib_LTLIBRARIES = libvlib.la |
| 17 | libvlib_la_LIBAD = 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/cli.c \ |
| 27 | vlib/cli.h \ |
| 28 | vlib/config.h \ |
| 29 | vlib/counter.c \ |
| 30 | vlib/error.c \ |
| 31 | vlib/format.c \ |
| 32 | vlib/i2c.c \ |
| 33 | vlib/init.c \ |
| 34 | vlib/main.c \ |
| 35 | vlib/mc.c \ |
| 36 | vlib/node.c \ |
| 37 | vlib/node_cli.c \ |
| 38 | vlib/node_format.c \ |
| 39 | vlib/pci/pci.c \ |
| 40 | vlib/pci/linux_pci.c \ |
| 41 | vlib/threads.c \ |
| 42 | vlib/threads_cli.c \ |
| 43 | vlib/trace.c |
| 44 | |
| 45 | nobase_include_HEADERS += \ |
| 46 | vlib/buffer_funcs.h \ |
| 47 | vlib/buffer_node.h \ |
| 48 | vlib/buffer.h \ |
| 49 | vlib/cli.h \ |
| 50 | vlib/cli_funcs.h \ |
| 51 | vlib/config.h \ |
| 52 | vlib/counter.h \ |
| 53 | vlib/defs.h \ |
| 54 | vlib/error_funcs.h \ |
| 55 | vlib/error.h \ |
| 56 | vlib/format_funcs.h \ |
| 57 | vlib/global_funcs.h \ |
| 58 | vlib/i2c.h \ |
| 59 | vlib/init.h \ |
| 60 | vlib/main.h \ |
| 61 | vlib/mc.h \ |
| 62 | vlib/node_funcs.h \ |
| 63 | vlib/node.h \ |
| 64 | vlib/physmem.h \ |
| 65 | vlib/pci/pci.h \ |
| 66 | vlib/pci/pci_config.h \ |
| 67 | vlib/threads.h \ |
| 68 | vlib/trace_funcs.h \ |
| 69 | vlib/trace.h \ |
| 70 | vlib/vlib.h |
| 71 | |
| 72 | libvlib_LTLIBRARIES += libvlib_unix.la |
| 73 | |
| 74 | libvlib_unix_la_SOURCES = \ |
| 75 | vlib/unix/cj.c \ |
| 76 | vlib/unix/cli.c \ |
| 77 | vlib/unix/input.c \ |
| 78 | vlib/unix/main.c \ |
| 79 | vlib/unix/mc_socket.c \ |
| 80 | vlib/unix/plugin.c \ |
| 81 | vlib/unix/plugin.h \ |
| 82 | vlib/unix/physmem.c \ |
| 83 | vlib/unix/util.c |
| 84 | |
| 85 | nobase_include_HEADERS += \ |
| 86 | vlib/unix/cj.h \ |
| 87 | vlib/unix/mc_socket.h \ |
| 88 | vlib/unix/physmem.h \ |
| 89 | vlib/unix/plugin.h \ |
| 90 | vlib/unix/unix.h |
| 91 | |
| 92 | if !WITH_DPDK |
| 93 | noinst_PROGRAMS += vlib_unix |
| 94 | |
| 95 | vlib_unix_SOURCES = \ |
| 96 | examples/vlib/main_stub.c \ |
| 97 | examples/vlib/mc_test.c |
| 98 | |
| 99 | vlib_unix_LDADD = libvlib_unix.la libvlib.la \ |
| 100 | libvppinfra.la -lpthread -lm -ldl -lrt |
| 101 | endif |
| 102 | |
| 103 | # vi:syntax=automake |