blob: 85695db604527daa2623527c6197f83c4c418d18 [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_mheap \
36 test_pool_iterate \
37 test_ptclosure \
38 test_random \
39 test_random_isaac \
40 test_serialize \
41 test_slist \
42 test_socket \
43 test_time \
44 test_timing_wheel \
Dave Barach8e8f98c2017-02-03 11:58:53 -050045 test_tw_timer \
Dave Barach8d6ef602018-01-30 14:12:31 -050046 test_valloc \
Damjan Marion7cd468a2016-12-19 23:05:39 +010047 test_vec \
Neale Ranns32e1c012016-11-22 17:07:28 +000048 test_zvec
Damjan Marion7cd468a2016-12-19 23:05:39 +010049endif
50
51noinst_PROGRAMS = $(TESTS)
52check_PROGRAMS = $(TESTS)
53
54test_bihash_template_SOURCES = vppinfra/test_bihash_template.c
Dave Barach310518e2017-10-30 09:42:54 -040055test_bihash_vec88_SOURCES = vppinfra/test_bihash_vec88.c
Klement Sekera470a0112017-03-08 05:21:24 +010056test_cuckoo_template_SOURCES = vppinfra/test_cuckoo_template.c
57test_cuckoo_bihash_SOURCES = vppinfra/test_cuckoo_bihash.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010058test_dlist_SOURCES = vppinfra/test_dlist.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010059test_elf_SOURCES = vppinfra/test_elf.c
Dave Barachb7f1faa2017-08-29 11:43:37 -040060test_elog_SOURCES = vppinfra/test_elog.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010061test_fifo_SOURCES = vppinfra/test_fifo.c
Pierre Pfister953f5512018-01-12 09:41:16 +010062test_flowhash_template_SOURCES = vppinfra/test_flowhash_template.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010063test_format_SOURCES = vppinfra/test_format.c
Dave Barachb7f1faa2017-08-29 11:43:37 -040064test_fpool_SOURCES = vppinfra/test_fpool.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010065test_hash_SOURCES = vppinfra/test_hash.c
66test_heap_SOURCES = vppinfra/test_heap.c
67test_longjmp_SOURCES = vppinfra/test_longjmp.c
68test_macros_SOURCES = vppinfra/test_macros.c
Dave Barache9d91702017-11-29 16:59:01 -050069test_maplog_SOURCES = vppinfra/test_maplog.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010070test_mheap_SOURCES = vppinfra/test_mheap.c
71test_pool_iterate_SOURCES = vppinfra/test_pool_iterate.c
72test_ptclosure_SOURCES = vppinfra/test_ptclosure.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010073test_random_isaac_SOURCES = vppinfra/test_random_isaac.c
Dave Barachb7f1faa2017-08-29 11:43:37 -040074test_random_SOURCES = vppinfra/test_random.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010075test_serialize_SOURCES = vppinfra/test_serialize.c
76test_slist_SOURCES = vppinfra/test_slist.c
77test_socket_SOURCES = vppinfra/test_socket.c
78test_time_SOURCES = vppinfra/test_time.c
79test_timing_wheel_SOURCES = vppinfra/test_timing_wheel.c
Dave Barach8e8f98c2017-02-03 11:58:53 -050080test_tw_timer_SOURCES = vppinfra/test_tw_timer.c
Dave Barach8d6ef602018-01-30 14:12:31 -050081test_valloc_SOURCES = vppinfra/test_valloc.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010082test_vec_SOURCES = vppinfra/test_vec.c
83test_zvec_SOURCES = vppinfra/test_zvec.c
84
85# All unit tests use ASSERT for failure
86# So we'll need -DDEBUG to enable ASSERTs
87test_bihash_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach310518e2017-10-30 09:42:54 -040088test_bihash_vec88_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Klement Sekera470a0112017-03-08 05:21:24 +010089test_cuckoo_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
90test_cuckoo_bihash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010091test_dlist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010092test_elf_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barachb7f1faa2017-08-29 11:43:37 -040093test_elog_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010094test_fifo_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Pierre Pfister953f5512018-01-12 09:41:16 +010095test_flowhash_template_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010096test_format_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barachb7f1faa2017-08-29 11:43:37 -040097test_fpool_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +010098test_hash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
99test_heap_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
100test_longjmp_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
101test_macros_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barache9d91702017-11-29 16:59:01 -0500102test_maplog_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100103test_mheap_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
104test_pool_iterate_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
105test_ptclosure_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
106test_random_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
107test_random_isaac_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100108test_serialize_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
109test_slist_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barachb7f1faa2017-08-29 11:43:37 -0400110test_socket_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100111test_time_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
112test_timing_wheel_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach8e8f98c2017-02-03 11:58:53 -0500113test_tw_timer_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Dave Barach8d6ef602018-01-30 14:12:31 -0500114test_valloc_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
Damjan Marion7cd468a2016-12-19 23:05:39 +0100115test_vec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
116test_zvec_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
117
118test_bihash_template_LDADD = libvppinfra.la
Dave Barach310518e2017-10-30 09:42:54 -0400119test_bihash_vec88_LDADD = libvppinfra.la
Klement Sekera470a0112017-03-08 05:21:24 +0100120test_cuckoo_template_LDADD = libvppinfra.la
121test_cuckoo_bihash_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100122test_dlist_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100123test_elf_LDADD = libvppinfra.la
Dave Barachb7f1faa2017-08-29 11:43:37 -0400124test_elog_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100125test_fifo_LDADD = libvppinfra.la
Pierre Pfister953f5512018-01-12 09:41:16 +0100126test_flowhash_template_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100127test_format_LDADD = libvppinfra.la
Dave Barachb7f1faa2017-08-29 11:43:37 -0400128test_fpool_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100129test_hash_LDADD = libvppinfra.la
130test_heap_LDADD = libvppinfra.la
131test_longjmp_LDADD = libvppinfra.la
132test_macros_LDADD = libvppinfra.la
Dave Barache9d91702017-11-29 16:59:01 -0500133test_maplog_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100134test_mheap_LDADD = libvppinfra.la
135test_pool_iterate_LDADD = libvppinfra.la
136test_ptclosure_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100137test_random_isaac_LDADD = libvppinfra.la
Dave Barachb7f1faa2017-08-29 11:43:37 -0400138test_random_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100139test_serialize_LDADD = libvppinfra.la
140test_slist_LDADD = libvppinfra.la
141test_socket_LDADD = libvppinfra.la
142test_time_LDADD = libvppinfra.la -lm
143test_timing_wheel_LDADD = libvppinfra.la -lm
Dave Barach8e8f98c2017-02-03 11:58:53 -0500144test_tw_timer_LDADD = libvppinfra.la
Dave Barach8d6ef602018-01-30 14:12:31 -0500145test_valloc_LDADD = libvppinfra.la
Damjan Marion7cd468a2016-12-19 23:05:39 +0100146test_vec_LDADD = libvppinfra.la
147test_zvec_LDADD = libvppinfra.la
148
149test_bihash_template_LDFLAGS = -static
Dave Barach310518e2017-10-30 09:42:54 -0400150test_bihash_vec88_LDFLAGS = -static
Klement Sekera470a0112017-03-08 05:21:24 +0100151test_cuckoo_template_LDFLAGS = -static
152test_cuckoo_bihash_LDFLAGS = -static -lpthread
Damjan Marion7cd468a2016-12-19 23:05:39 +0100153test_dlist_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100154test_elf_LDFLAGS = -static
Dave Barachb7f1faa2017-08-29 11:43:37 -0400155test_elog_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100156test_fifo_LDFLAGS = -static
Pierre Pfister953f5512018-01-12 09:41:16 +0100157test_flowhash_template_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100158test_format_LDFLAGS = -static
Dave Barachb7f1faa2017-08-29 11:43:37 -0400159test_fpool_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100160test_hash_LDFLAGS = -static
161test_heap_LDFLAGS = -static
162test_longjmp_LDFLAGS = -static
163test_macros_LDFLAGS = -static
Dave Barache9d91702017-11-29 16:59:01 -0500164test_maplog_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100165test_mheap_LDFLAGS = -static
166test_pool_iterate_LDFLAGS = -static
167test_ptclosure_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100168test_random_isaac_LDFLAGS = -static
Dave Barachb7f1faa2017-08-29 11:43:37 -0400169test_random_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100170test_serialize_LDFLAGS = -static
171test_slist_LDFLAGS = -static
172test_socket_LDFLAGS = -static
173test_time_LDFLAGS = -static
174test_timing_wheel_LDFLAGS = -static
Dave Barach8e8f98c2017-02-03 11:58:53 -0500175test_tw_timer_LDFLAGS = -static
Dave Barach8d6ef602018-01-30 14:12:31 -0500176test_valloc_LDFLAGS = -static
Damjan Marion7cd468a2016-12-19 23:05:39 +0100177test_vec_LDFLAGS = -static
178test_zvec_LDFLAGS = -static
179
180# noinst_PROGRAMS += test_vhash
181# test_vhash_SOURCES = vppinfra/test_vhash.c vppinfra/vhash.c
182# test_vhash_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
183# test_vhash_LDADD = libvppinfra.la
184# test_vhash_LDFLAGS = -static
185
186nobase_include_HEADERS = \
187 vppinfra/asm_mips.h \
188 vppinfra/asm_x86.h \
189 vppinfra/bihash_8_8.h \
Dave Barach310518e2017-10-30 09:42:54 -0400190 vppinfra/bihash_vec8_8.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500191 vppinfra/bihash_16_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100192 vppinfra/bihash_24_8.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500193 vppinfra/bihash_48_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100194 vppinfra/bihash_template.h \
195 vppinfra/bihash_template.c \
196 vppinfra/bitmap.h \
197 vppinfra/bitops.h \
198 vppinfra/byte_order.h \
199 vppinfra/cache.h \
200 vppinfra/clib.h \
Klement Sekera58eb8662017-06-09 06:06:49 +0200201 vppinfra/clib_error.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100202 vppinfra/cpu.h \
Damjan Marion0f68c792017-04-26 13:05:05 +0200203 vppinfra/crc32.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100204 vppinfra/dlist.h \
205 vppinfra/elf.h \
206 vppinfra/elf_clib.h \
207 vppinfra/elog.h \
208 vppinfra/fheap.h \
209 vppinfra/error.h \
210 vppinfra/error_bootstrap.h \
211 vppinfra/fifo.h \
Damjan Marion56dd5432017-09-08 19:52:02 +0200212 vppinfra/file.h \
Pierre Pfister953f5512018-01-12 09:41:16 +0100213 vppinfra/flowhash_template.h \
214 vppinfra/flowhash_8_8.h \
215 vppinfra/flowhash_24_16.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100216 vppinfra/format.h \
217 vppinfra/graph.h \
218 vppinfra/hash.h \
219 vppinfra/heap.h \
Damjan Marion01914ce2017-09-14 19:04:50 +0200220 vppinfra/linux/sysfs.h \
221 vppinfra/linux/syscall.h \
Damjan Marion1927da22017-03-27 17:08:20 +0200222 vppinfra/lock.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100223 vppinfra/longjmp.h \
224 vppinfra/macros.h \
Dave Barache9d91702017-11-29 16:59:01 -0500225 vppinfra/maplog.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100226 vppinfra/math.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100227 vppinfra/mem.h \
228 vppinfra/memcpy_sse3.h \
Damjan Marionfad3fb32017-12-14 09:30:11 +0100229 vppinfra/memcpy_avx2.h \
230 vppinfra/memcpy_avx512.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100231 vppinfra/mhash.h \
232 vppinfra/mheap.h \
233 vppinfra/mheap_bootstrap.h \
234 vppinfra/os.h \
235 vppinfra/pipeline.h \
236 vppinfra/pool.h \
237 vppinfra/ptclosure.h \
238 vppinfra/random.h \
239 vppinfra/random_buffer.h \
240 vppinfra/random_isaac.h \
241 vppinfra/serialize.h \
242 vppinfra/slist.h \
243 vppinfra/smp.h \
244 vppinfra/socket.h \
245 vppinfra/sparse_vec.h \
246 vppinfra/string.h \
247 vppinfra/time.h \
248 vppinfra/timing_wheel.h \
249 vppinfra/timer.h \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500250 vppinfra/tw_timer_2t_1w_2048sl.h \
251 vppinfra/tw_timer_16t_2w_512sl.h \
Dave Barach68b0fb02017-02-28 15:15:56 -0500252 vppinfra/tw_timer_16t_1w_2048sl.h \
Dave Barach4af9ba12017-06-07 15:18:23 -0400253 vppinfra/tw_timer_4t_3w_256sl.h \
254 vppinfra/tw_timer_1t_3w_1024sl_ov.h \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500255 vppinfra/tw_timer_template.h \
Gabriel Ganne613c79f2017-02-15 11:37:53 +0100256 vppinfra/tw_timer_template.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100257 vppinfra/types.h \
258 vppinfra/unix.h \
Dave Barach8d6ef602018-01-30 14:12:31 -0500259 vppinfra/valloc.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100260 vppinfra/vec.h \
261 vppinfra/vec_bootstrap.h \
262 vppinfra/vector.h \
263 vppinfra/vector_altivec.h \
264 vppinfra/vector_funcs.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100265 vppinfra/vector_neon.h \
Damjan Marion927b0712018-02-20 08:33:50 +0100266 vppinfra/vector_sse42.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100267 vppinfra/valgrind.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100268 vppinfra/xxhash.h \
269 vppinfra/xy.h \
270 vppinfra/zvec.h
271
272CLIB_CORE = \
273 vppinfra/asm_x86.c \
274 vppinfra/backtrace.c \
275 vppinfra/bihash_8_8.h \
Dave Barach310518e2017-10-30 09:42:54 -0400276 vppinfra/bihash_vec8_8.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100277 vppinfra/bihash_24_8.h \
278 vppinfra/bihash_template.h \
279 vppinfra/cpu.c \
280 vppinfra/elf.c \
281 vppinfra/elog.c \
282 vppinfra/error.c \
283 vppinfra/fifo.c \
284 vppinfra/fheap.c \
Pierre Pfister953f5512018-01-12 09:41:16 +0100285 vppinfra/flowhash_8_8.h \
286 vppinfra/flowhash_24_16.h \
287 vppinfra/flowhash_template.h \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100288 vppinfra/format.c \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400289 vppinfra/pool.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100290 vppinfra/graph.c \
291 vppinfra/hash.c \
292 vppinfra/heap.c \
293 vppinfra/longjmp.S \
294 vppinfra/macros.c \
295 vppinfra/mhash.c \
296 vppinfra/mheap.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100297 vppinfra/mem_mheap.c \
298 vppinfra/ptclosure.c \
299 vppinfra/random.c \
300 vppinfra/random_buffer.c \
301 vppinfra/random_isaac.c \
302 vppinfra/serialize.c \
303 vppinfra/slist.c \
304 vppinfra/std-formats.c \
305 vppinfra/string.c \
306 vppinfra/time.c \
307 vppinfra/timing_wheel.c \
Dave Barach8e8f98c2017-02-03 11:58:53 -0500308 vppinfra/tw_timer_template.h \
309 vppinfra/tw_timer_2t_1w_2048sl.h \
310 vppinfra/tw_timer_2t_1w_2048sl.c \
311 vppinfra/tw_timer_16t_2w_512sl.h \
312 vppinfra/tw_timer_16t_2w_512sl.c \
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 vppinfra/tw_timer_16t_1w_2048sl.h \
314 vppinfra/tw_timer_16t_1w_2048sl.c \
Dave Barach4af9ba12017-06-07 15:18:23 -0400315 vppinfra/tw_timer_4t_3w_256sl.h \
316 vppinfra/tw_timer_4t_3w_256sl.c \
317 vppinfra/tw_timer_1t_3w_1024sl_ov.h \
318 vppinfra/tw_timer_1t_3w_1024sl_ov.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100319 vppinfra/unformat.c \
Dave Barach8d6ef602018-01-30 14:12:31 -0500320 vppinfra/valloc.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100321 vppinfra/vec.c \
322 vppinfra/vector.c \
323 vppinfra/zvec.c
324
325# Core plus Unix additions
326libvppinfra_la_SOURCES = \
327 $(CLIB_CORE) \
328 vppinfra/elf_clib.c \
Damjan Marion01914ce2017-09-14 19:04:50 +0200329 vppinfra/linux/mem.c \
330 vppinfra/linux/sysfs.c \
Dave Barache9d91702017-11-29 16:59:01 -0500331 vppinfra/maplog.c \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100332 vppinfra/socket.c \
333 vppinfra/timer.c \
334 vppinfra/unix-formats.c \
335 vppinfra/unix-misc.c
336
337bin_PROGRAMS = elftool
338
339elftool_SOURCES = tools/elftool/elftool.c
340elftool_CPPFLAGS = $(AM_CPPFLAGS)
341elftool_LDADD = libvppinfra.la -lpthread -lrt -lm
342
343# vi:syntax=automake