blob: 2bb16b2bd9c36024ba7f8002c22c2623b0defc45 [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
Damjan Marion724f64c2017-01-11 11:11:00 +010014lib_LTLIBRARIES += libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +010015
Dave Barach310518e2017-10-30 09:42:54 -040016TESTS =
Damjan Marion7cd468a2016-12-19 23:05:39 +010017
18if ENABLE_TESTS
19TESTS += test_bihash_template \
Dave Barach310518e2017-10-30 09:42:54 -040020 test_bihash_vec88 \
21 test_cuckoo_bihash \
22 test_cuckoo_template\
Damjan Marion7cd468a2016-12-19 23:05:39 +010023 test_dlist \
Damjan Marion7cd468a2016-12-19 23:05:39 +010024 test_elf \
Dave Barachb7f1faa2017-08-29 11:43:37 -040025 test_elog \
Damjan Marion7cd468a2016-12-19 23:05:39 +010026 test_fifo \
Pierre Pfister953f5512018-01-12 09:41:16 +010027 test_flowhash_template \
Damjan Marion7cd468a2016-12-19 23:05:39 +010028 test_format \
Dave Barachb7f1faa2017-08-29 11:43:37 -040029 test_fpool \
Damjan Marion7cd468a2016-12-19 23:05:39 +010030 test_hash \
31 test_heap \
32 test_longjmp \
33 test_macros \
Dave Barache9d91702017-11-29 16:59:01 -050034 test_maplog \
Damjan Marion7cd468a2016-12-19 23:05:39 +010035 test_md5 \
36 test_mheap \
37 test_pool_iterate \
38 test_ptclosure \
39 test_random \
40 test_random_isaac \
41 test_serialize \
42 test_slist \
43 test_socket \
44 test_time \
45 test_timing_wheel \
Dave Barach8e8f98c2017-02-03 11:58:53 -050046 test_tw_timer \
Dave Barach8d6ef602018-01-30 14:12:31 -050047 test_valloc \
Damjan Marion7cd468a2016-12-19 23:05:39 +010048 test_vec \
Neale Ranns32e1c012016-11-22 17:07:28 +000049 test_zvec
Damjan Marion7cd468a2016-12-19 23:05:39 +010050endif
51
52noinst_PROGRAMS = $(TESTS)
53check_PROGRAMS = $(TESTS)
54
55test_bihash_template_SOURCES = vppinfra/test_bihash_template.c
Dave Barach310518e2017-10-30 09:42:54 -040056test_bihash_vec88_SOURCES = vppinfra/test_bihash_vec88.c
Klement Sekera470a0112017-03-08 05:21:24 +010057test_cuckoo_template_SOURCES = vppinfra/test_cuckoo_template.c
58test_cuckoo_bihash_SOURCES = vppinfra/test_cuckoo_bihash.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010059test_dlist_SOURCES = vppinfra/test_dlist.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010060test_elf_SOURCES = vppinfra/test_elf.c
Dave Barachb7f1faa2017-08-29 11:43:37 -040061test_elog_SOURCES = vppinfra/test_elog.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010062test_fifo_SOURCES = vppinfra/test_fifo.c
Pierre Pfister953f5512018-01-12 09:41:16 +010063test_flowhash_template_SOURCES = vppinfra/test_flowhash_template.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010064test_format_SOURCES = vppinfra/test_format.c
Dave Barachb7f1faa2017-08-29 11:43:37 -040065test_fpool_SOURCES = vppinfra/test_fpool.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010066test_hash_SOURCES = vppinfra/test_hash.c
67test_heap_SOURCES = vppinfra/test_heap.c
68test_longjmp_SOURCES = vppinfra/test_longjmp.c
69test_macros_SOURCES = vppinfra/test_macros.c
Dave Barache9d91702017-11-29 16:59:01 -050070test_maplog_SOURCES = vppinfra/test_maplog.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010071test_md5_SOURCES = vppinfra/test_md5.c
72test_mheap_SOURCES = vppinfra/test_mheap.c
73test_pool_iterate_SOURCES = vppinfra/test_pool_iterate.c
74test_ptclosure_SOURCES = vppinfra/test_ptclosure.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010075test_random_isaac_SOURCES = vppinfra/test_random_isaac.c
Dave Barachb7f1faa2017-08-29 11:43:37 -040076test_random_SOURCES = vppinfra/test_random.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010077test_serialize_SOURCES = vppinfra/test_serialize.c
78test_slist_SOURCES = vppinfra/test_slist.c
79test_socket_SOURCES = vppinfra/test_socket.c
80test_time_SOURCES = vppinfra/test_time.c
81test_timing_wheel_SOURCES = vppinfra/test_timing_wheel.c
Dave Barach8e8f98c2017-02-03 11:58:53 -050082test_tw_timer_SOURCES = vppinfra/test_tw_timer.c
Dave Barach8d6ef602018-01-30 14:12:31 -050083test_valloc_SOURCES = vppinfra/test_valloc.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010084test_vec_SOURCES = vppinfra/test_vec.c
85test_zvec_SOURCES = vppinfra/test_zvec.c
86
87# All unit tests use ASSERT for failure
88# So we'll need -DDEBUG to enable ASSERTs
89test_bihash_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach310518e2017-10-30 09:42:54 -040090test_bihash_vec88_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Klement Sekera470a0112017-03-08 05:21:24 +010091test_cuckoo_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
92test_cuckoo_bihash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010093test_dlist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010094test_elf_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barachb7f1faa2017-08-29 11:43:37 -040095test_elog_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010096test_fifo_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Pierre Pfister953f5512018-01-12 09:41:16 +010097test_flowhash_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010098test_format_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barachb7f1faa2017-08-29 11:43:37 -040099test_fpool_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100100test_hash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
101test_heap_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
102test_longjmp_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
103test_macros_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barache9d91702017-11-29 16:59:01 -0500104test_maplog_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100105test_md5_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
106test_mheap_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
107test_pool_iterate_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
108test_ptclosure_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
109test_random_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
110test_random_isaac_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100111test_serialize_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
112test_slist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barachb7f1faa2017-08-29 11:43:37 -0400113test_socket_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100114test_time_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
115test_timing_wheel_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach8e8f98c2017-02-03 11:58:53 -0500116test_tw_timer_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach8d6ef602018-01-30 14:12:31 -0500117test_valloc_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100118test_vec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
119test_zvec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
120
121test_bihash_template_LDADD = libvppinfra.la
Dave Barach310518e2017-10-30 09:42:54 -0400122test_bihash_vec88_LDADD = libvppinfra.la
Klement Sekera470a0112017-03-08 05:21:24 +0100123test_cuckoo_template_LDADD = libvppinfra.la
124test_cuckoo_bihash_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100125test_dlist_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100126test_elf_LDADD = libvppinfra.la
Dave Barachb7f1faa2017-08-29 11:43:37 -0400127test_elog_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100128test_fifo_LDADD = libvppinfra.la
Pierre Pfister953f5512018-01-12 09:41:16 +0100129test_flowhash_template_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100130test_format_LDADD = libvppinfra.la
Dave Barachb7f1faa2017-08-29 11:43:37 -0400131test_fpool_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100132test_hash_LDADD = libvppinfra.la
133test_heap_LDADD = libvppinfra.la
134test_longjmp_LDADD = libvppinfra.la
135test_macros_LDADD = libvppinfra.la
Dave Barache9d91702017-11-29 16:59:01 -0500136test_maplog_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100137test_md5_LDADD = libvppinfra.la
138test_mheap_LDADD = libvppinfra.la
139test_pool_iterate_LDADD = libvppinfra.la
140test_ptclosure_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100141test_random_isaac_LDADD = libvppinfra.la
Dave Barachb7f1faa2017-08-29 11:43:37 -0400142test_random_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100143test_serialize_LDADD = libvppinfra.la
144test_slist_LDADD = libvppinfra.la
145test_socket_LDADD = libvppinfra.la
146test_time_LDADD = libvppinfra.la -lm
147test_timing_wheel_LDADD = libvppinfra.la -lm
Dave Barach8e8f98c2017-02-03 11:58:53 -0500148test_tw_timer_LDADD = libvppinfra.la
Dave Barach8d6ef602018-01-30 14:12:31 -0500149test_valloc_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100150test_vec_LDADD = libvppinfra.la
151test_zvec_LDADD = libvppinfra.la
152
153test_bihash_template_LDFLAGS = -static
Dave Barach310518e2017-10-30 09:42:54 -0400154test_bihash_vec88_LDFLAGS = -static
Klement Sekera470a0112017-03-08 05:21:24 +0100155test_cuckoo_template_LDFLAGS = -static
156test_cuckoo_bihash_LDFLAGS = -static -lpthread
Damjan Marion7cd468a2016-12-19 23:05:39 +0100157test_dlist_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100158test_elf_LDFLAGS = -static
Dave Barachb7f1faa2017-08-29 11:43:37 -0400159test_elog_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100160test_fifo_LDFLAGS = -static
Pierre Pfister953f5512018-01-12 09:41:16 +0100161test_flowhash_template_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100162test_format_LDFLAGS = -static
Dave Barachb7f1faa2017-08-29 11:43:37 -0400163test_fpool_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100164test_hash_LDFLAGS = -static
165test_heap_LDFLAGS = -static
166test_longjmp_LDFLAGS = -static
167test_macros_LDFLAGS = -static
Dave Barache9d91702017-11-29 16:59:01 -0500168test_maplog_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100169test_md5_LDFLAGS = -static
170test_mheap_LDFLAGS = -static
171test_pool_iterate_LDFLAGS = -static
172test_ptclosure_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100173test_random_isaac_LDFLAGS = -static
Dave Barachb7f1faa2017-08-29 11:43:37 -0400174test_random_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100175test_serialize_LDFLAGS = -static
176test_slist_LDFLAGS = -static
177test_socket_LDFLAGS = -static
178test_time_LDFLAGS = -static
179test_timing_wheel_LDFLAGS = -static
Dave Barach8e8f98c2017-02-03 11:58:53 -0500180test_tw_timer_LDFLAGS = -static
Dave Barach8d6ef602018-01-30 14:12:31 -0500181test_valloc_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100182test_vec_LDFLAGS = -static
183test_zvec_LDFLAGS = -static
184
185# noinst_PROGRAMS += test_vhash
186# test_vhash_SOURCES = vppinfra/test_vhash.c vppinfra/vhash.c
187# test_vhash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
188# test_vhash_LDADD = libvppinfra.la
189# test_vhash_LDFLAGS = -static
190
191nobase_include_HEADERS = \
192 vppinfra/asm_mips.h \
193 vppinfra/asm_x86.h \
194 vppinfra/bihash_8_8.h \
Dave Barach310518e2017-10-30 09:42:54 -0400195 vppinfra/bihash_vec8_8.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500196 vppinfra/bihash_16_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100197 vppinfra/bihash_24_8.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500198 vppinfra/bihash_48_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100199 vppinfra/bihash_template.h \
200 vppinfra/bihash_template.c \
201 vppinfra/bitmap.h \
202 vppinfra/bitops.h \
203 vppinfra/byte_order.h \
204 vppinfra/cache.h \
205 vppinfra/clib.h \
Klement Sekera58eb8662017-06-09 06:06:49 +0200206 vppinfra/clib_error.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100207 vppinfra/cpu.h \
Damjan Marion0f68c792017-04-26 13:05:05 +0200208 vppinfra/crc32.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100209 vppinfra/dlist.h \
210 vppinfra/elf.h \
211 vppinfra/elf_clib.h \
212 vppinfra/elog.h \
213 vppinfra/fheap.h \
214 vppinfra/error.h \
215 vppinfra/error_bootstrap.h \
216 vppinfra/fifo.h \
Damjan Marion56dd5432017-09-08 19:52:02 +0200217 vppinfra/file.h \
Pierre Pfister953f5512018-01-12 09:41:16 +0100218 vppinfra/flowhash_template.h \
219 vppinfra/flowhash_8_8.h \
220 vppinfra/flowhash_24_16.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100221 vppinfra/format.h \
222 vppinfra/graph.h \
223 vppinfra/hash.h \
224 vppinfra/heap.h \
Damjan Marion01914ce2017-09-14 19:04:50 +0200225 vppinfra/linux/sysfs.h \
226 vppinfra/linux/syscall.h \
Damjan Marion1927da22017-03-27 17:08:20 +0200227 vppinfra/lock.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100228 vppinfra/longjmp.h \
229 vppinfra/macros.h \
Dave Barache9d91702017-11-29 16:59:01 -0500230 vppinfra/maplog.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100231 vppinfra/math.h \
232 vppinfra/md5.h \
233 vppinfra/mem.h \
234 vppinfra/memcpy_sse3.h \
Damjan Marionfad3fb32017-12-14 09:30:11 +0100235 vppinfra/memcpy_avx2.h \
236 vppinfra/memcpy_avx512.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100237 vppinfra/mhash.h \
238 vppinfra/mheap.h \
239 vppinfra/mheap_bootstrap.h \
240 vppinfra/os.h \
241 vppinfra/pipeline.h \
242 vppinfra/pool.h \
243 vppinfra/ptclosure.h \
244 vppinfra/random.h \
245 vppinfra/random_buffer.h \
246 vppinfra/random_isaac.h \
247 vppinfra/serialize.h \
248 vppinfra/slist.h \
249 vppinfra/smp.h \
250 vppinfra/socket.h \
251 vppinfra/sparse_vec.h \
252 vppinfra/string.h \
253 vppinfra/time.h \
254 vppinfra/timing_wheel.h \
255 vppinfra/timer.h \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500256 vppinfra/tw_timer_2t_1w_2048sl.h \
257 vppinfra/tw_timer_16t_2w_512sl.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500258 vppinfra/tw_timer_16t_1w_2048sl.h \
Dave Barach4af9ba12017-06-07 15:18:23 -0400259 vppinfra/tw_timer_4t_3w_256sl.h \
260 vppinfra/tw_timer_1t_3w_1024sl_ov.h \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500261 vppinfra/tw_timer_template.h \
Gabriel Ganne613c79f2017-02-15 11:37:53 +0100262 vppinfra/tw_timer_template.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100263 vppinfra/types.h \
264 vppinfra/unix.h \
Dave Barach8d6ef602018-01-30 14:12:31 -0500265 vppinfra/valloc.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100266 vppinfra/vec.h \
267 vppinfra/vec_bootstrap.h \
268 vppinfra/vector.h \
269 vppinfra/vector_altivec.h \
270 vppinfra/vector_funcs.h \
271 vppinfra/vector_iwmmxt.h \
272 vppinfra/vector_neon.h \
273 vppinfra/vector_sse2.h \
274 vppinfra/valgrind.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100275 vppinfra/xxhash.h \
276 vppinfra/xy.h \
277 vppinfra/zvec.h
278
279CLIB_CORE = \
280 vppinfra/asm_x86.c \
281 vppinfra/backtrace.c \
282 vppinfra/bihash_8_8.h \
Dave Barach310518e2017-10-30 09:42:54 -0400283 vppinfra/bihash_vec8_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100284 vppinfra/bihash_24_8.h \
285 vppinfra/bihash_template.h \
286 vppinfra/cpu.c \
287 vppinfra/elf.c \
288 vppinfra/elog.c \
289 vppinfra/error.c \
290 vppinfra/fifo.c \
291 vppinfra/fheap.c \
Pierre Pfister953f5512018-01-12 09:41:16 +0100292 vppinfra/flowhash_8_8.h \
293 vppinfra/flowhash_24_16.h \
294 vppinfra/flowhash_template.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100295 vppinfra/format.c \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400296 vppinfra/pool.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100297 vppinfra/graph.c \
298 vppinfra/hash.c \
299 vppinfra/heap.c \
300 vppinfra/longjmp.S \
301 vppinfra/macros.c \
302 vppinfra/mhash.c \
303 vppinfra/mheap.c \
304 vppinfra/md5.c \
305 vppinfra/mem_mheap.c \
306 vppinfra/ptclosure.c \
307 vppinfra/random.c \
308 vppinfra/random_buffer.c \
309 vppinfra/random_isaac.c \
310 vppinfra/serialize.c \
311 vppinfra/slist.c \
312 vppinfra/std-formats.c \
313 vppinfra/string.c \
314 vppinfra/time.c \
315 vppinfra/timing_wheel.c \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500316 vppinfra/tw_timer_template.h \
317 vppinfra/tw_timer_2t_1w_2048sl.h \
318 vppinfra/tw_timer_2t_1w_2048sl.c \
319 vppinfra/tw_timer_16t_2w_512sl.h \
320 vppinfra/tw_timer_16t_2w_512sl.c \
Dave Barach68b0fb02017-02-28 15:15:56 -0500321 vppinfra/tw_timer_16t_1w_2048sl.h \
322 vppinfra/tw_timer_16t_1w_2048sl.c \
Dave Barach4af9ba12017-06-07 15:18:23 -0400323 vppinfra/tw_timer_4t_3w_256sl.h \
324 vppinfra/tw_timer_4t_3w_256sl.c \
325 vppinfra/tw_timer_1t_3w_1024sl_ov.h \
326 vppinfra/tw_timer_1t_3w_1024sl_ov.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100327 vppinfra/unformat.c \
Dave Barach8d6ef602018-01-30 14:12:31 -0500328 vppinfra/valloc.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100329 vppinfra/vec.c \
330 vppinfra/vector.c \
331 vppinfra/zvec.c
332
333# Core plus Unix additions
334libvppinfra_la_SOURCES = \
335 $(CLIB_CORE) \
336 vppinfra/elf_clib.c \
Damjan Marion01914ce2017-09-14 19:04:50 +0200337 vppinfra/linux/mem.c \
338 vppinfra/linux/sysfs.c \
Dave Barache9d91702017-11-29 16:59:01 -0500339 vppinfra/maplog.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100340 vppinfra/socket.c \
341 vppinfra/timer.c \
342 vppinfra/unix-formats.c \
343 vppinfra/unix-misc.c
344
345bin_PROGRAMS = elftool
346
347elftool_SOURCES = tools/elftool/elftool.c
348elftool_CPPFLAGS = $(AM_CPPFLAGS)
349elftool_LDADD = libvppinfra.la -lpthread -lrt -lm
350
351# vi:syntax=automake