l2-rw: Packet rewrite feature for L2 bridges
[vpp.git] / vnet / Makefile.am
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 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 AM_CFLAGS = -Wall @DPDK@ @VIRL@ @IPSEC@ @VCGN@ @IPV6SR@
17
18 libvnet_la_SOURCES =
19 libvnetplugin_la_SOURCES =
20 nobase_include_HEADERS =
21 noinst_PROGRAMS =
22
23 ########################################
24 # Generic stuff
25 ########################################
26 libvnet_la_SOURCES +=                                   \
27   vnet/config.c                                         \
28   vnet/interface.c                                      \
29   vnet/interface_cli.c                                  \
30   vnet/interface_format.c                               \
31   vnet/interface_output.c                               \
32   vnet/misc.c                                           \
33   vnet/replication.c                                    \
34   vnet/rewrite.c                                
35
36 nobase_include_HEADERS +=                       \
37   vnet/api_errno.h                              \
38   vnet/buffer.h                                 \
39   vnet/config.h                                 \
40   vnet/global_funcs.h                           \
41   vnet/interface.h                              \
42   vnet/interface_funcs.h                        \
43   vnet/l3_types.h                               \
44   vnet/pipeline.h                               \
45   vnet/replication.h                            \
46   vnet/rewrite.h                                \
47   vnet/vnet.h
48
49 ########################################
50 # Policer infra
51 ########################################
52
53 libvnet_la_SOURCES +=                           \
54   vnet/policer/node_funcs.c                     \
55   vnet/policer/policer.c                        \
56   vnet/policer/xlate.c
57
58 nobase_include_HEADERS +=                       \
59   vnet/policer/police.h                         \
60   vnet/policer/xlate.h
61
62 ########################################
63 # Cop - junk filter
64 ########################################
65
66 libvnet_la_SOURCES +=                           \
67   vnet/cop/cop.c                                \
68   vnet/cop/node1.c                              \
69   vnet/cop/ip4_whitelist.c                      \
70   vnet/cop/ip6_whitelist.c      
71
72 nobase_include_HEADERS +=                       \
73   vnet/cop/cop.h
74
75 ########################################
76 # Layer 2 protocols go here
77 ########################################
78
79 ########################################
80 # Layer 2 protocol: Ethernet
81 ########################################
82 libvnet_la_SOURCES +=                           \
83  vnet/ethernet/arp.c                            \
84  vnet/ethernet/cli.c                            \
85  vnet/ethernet/format.c                         \
86  vnet/ethernet/init.c                           \
87  vnet/ethernet/interface.c                      \
88  vnet/ethernet/node.c                           \
89  vnet/ethernet/pg.c
90
91 nobase_include_HEADERS +=                       \
92  vnet/ethernet/arp_packet.h                     \
93  vnet/ethernet/error.def                        \
94  vnet/ethernet/ethernet.h                       \
95  vnet/ethernet/packet.h                         \
96  vnet/ethernet/types.def
97
98 ########################################
99 # Layer 2 protocol: Ethernet bridging
100 ########################################
101 libvnet_la_SOURCES +=                           \
102  vnet/l2/feat_bitmap.c                          \
103  vnet/l2/l2_bd.c                                \
104  vnet/l2/l2_bvi.c                               \
105  vnet/l2/l2_classify.c                          \
106  vnet/l2/l2_efp_filter.c                        \
107  vnet/l2/l2_fib.c                               \
108  vnet/l2/l2_flood.c                             \
109  vnet/l2/l2_fwd.c                               \
110  vnet/l2/l2_input_acl.c                         \
111  vnet/l2/l2_input.c                             \
112  vnet/l2/l2_input_vtr.c                         \
113  vnet/l2/l2_learn.c                             \
114  vnet/l2/l2_output_acl.c                        \
115  vnet/l2/l2_output.c                            \
116  vnet/l2/l2_patch.c                             \
117  vnet/l2/l2_rw.c                                \
118  vnet/l2/l2_vtr.c                               \
119  vnet/l2/l2_xcrw.c
120
121 nobase_include_HEADERS +=                       \
122  vnet/l2/feat_bitmap.h                          \
123  vnet/l2/l2_input.h                             \
124  vnet/l2/l2_output.h                            \
125  vnet/l2/l2_vtr.h                               \
126  vnet/l2/l2_input_vtr.h                         \
127  vnet/l2/l2_efp_filter.h                        \
128  vnet/l2/l2_fwd.h                               \
129  vnet/l2/l2_bd.h                                \
130  vnet/l2/l2_bvi.h                               \
131  vnet/l2/l2_flood.h                             \
132  vnet/l2/l2_fib.h                               \
133  vnet/l2/l2_rw.h                                \
134  vnet/l2/l2_xcrw.h                              \
135  vnet/l2/l2_classify.h
136
137 ########################################
138 # Layer 2 protocol: SRP
139 ########################################
140 libvnet_la_SOURCES +=                           \
141  vnet/srp/format.c                              \
142  vnet/srp/interface.c                           \
143  vnet/srp/node.c                                \
144  vnet/srp/pg.c
145
146 nobase_include_HEADERS +=                       \
147  vnet/srp/packet.h                              \
148  vnet/srp/srp.h
149
150 ########################################
151 # Layer 2 protocol: PPP
152 ########################################
153 libvnet_la_SOURCES +=                           \
154   vnet/ppp/node.c                               \
155   vnet/ppp/pg.c                                 \
156   vnet/ppp/ppp.c
157
158 nobase_include_HEADERS +=                       \
159  vnet/ppp/error.def                             \
160  vnet/ppp/ppp.h                                 \
161  vnet/ppp/packet.h
162
163 ########################################
164 # Layer 2 protocol: HDLC
165 ########################################
166 libvnet_la_SOURCES +=                           \
167   vnet/hdlc/node.c                              \
168   vnet/hdlc/pg.c                                \
169   vnet/hdlc/hdlc.c
170
171 nobase_include_HEADERS +=                       \
172  vnet/hdlc/error.def                            \
173  vnet/hdlc/hdlc.h                               \
174  vnet/hdlc/packet.h
175
176 ########################################
177 # Layer 2 protocol: LLC
178 ########################################
179 libvnet_la_SOURCES +=                           \
180   vnet/llc/llc.c                                \
181   vnet/llc/node.c                               \
182   vnet/llc/pg.c
183
184 nobase_include_HEADERS +=                       \
185  vnet/llc/llc.h
186
187 ########################################
188 # Layer 2 protocol: SNAP
189 ########################################
190 libvnet_la_SOURCES +=                           \
191   vnet/snap/snap.c                              \
192   vnet/snap/node.c                              \
193   vnet/snap/pg.c
194
195 nobase_include_HEADERS +=                       \
196  vnet/snap/snap.h
197
198 ########################################
199 # Layer 2 / vxlan
200 ########################################
201 libvnet_la_SOURCES +=                           \
202   vnet/vxlan/vxlan.c                            \
203   vnet/vxlan/encap.c                            \
204   vnet/vxlan/decap.c    
205
206 nobase_include_HEADERS +=                       \
207   vnet/vxlan/vxlan.h                            \
208   vnet/vxlan/vxlan_packet.h                     \
209   vnet/vxlan/vxlan_error.def
210
211 ########################################
212 # Layer 2 / CDP
213 ########################################
214 libvnet_la_SOURCES +=                           \
215   vnet/cdp/cdp_input.c                          \
216   vnet/cdp/cdp_node.c                           \
217   vnet/cdp/cdp_periodic.c       
218
219 nobase_include_HEADERS +=                       \
220   vnet/cdp/cdp_protocol.h
221
222 ########################################
223 # Layer 2/3 "classify"
224 ########################################
225 libvnet_la_SOURCES +=                           \
226   vnet/classify/vnet_classify.c                 \
227   vnet/classify/ip_classify.c                   \
228   vnet/classify/input_acl.c                     \
229   vnet/classify/vnet_classify.h
230
231 nobase_include_HEADERS +=                       \
232   vnet/classify/vnet_classify.h                 \
233   vnet/classify/input_acl.h
234
235 ########################################
236 # Layer 3 protocols go here
237 ########################################
238
239 ########################################
240 # Layer 3 protocol: IP v4/v6
241 ########################################
242 libvnet_la_SOURCES +=                           \
243  vnet/ip/format.c                               \
244  vnet/ip/icmp4.c                                \
245  vnet/ip/icmp6.c                                \
246  vnet/ip/ip46_cli.c                             \
247  vnet/ip/ip4_format.c                           \
248  vnet/ip/ip4_forward.c                          \
249  vnet/ip/ip4_hop_by_hop.c                       \
250  vnet/ip/ip4_input.c                            \
251  vnet/ip/ip4_mtrie.c                            \
252  vnet/ip/ip4_pg.c                               \
253  vnet/ip/ip4_source_check.c                     \
254  vnet/ip/ip6_format.c                           \
255  vnet/ip/ip6_forward.c                          \
256  vnet/ip/ip6_hop_by_hop.c                       \
257  vnet/ip/ip6_input.c                            \
258  vnet/ip/ip6_neighbor.c                         \
259  vnet/ip/ip6_pg.c                               \
260  vnet/ip/ip_checksum.c                          \
261  vnet/ip/ip.h                                   \
262  vnet/ip/ip_init.c                              \
263  vnet/ip/lookup.c                               \
264  vnet/ip/udp_format.c                           \
265  vnet/ip/udp_init.c                             \
266  vnet/ip/udp_local.c                            \
267  vnet/ip/udp_pg.c                               \
268  vnet/ip/ip_input_acl.c                         \
269  vnet/ip/ip_frag.c
270
271 nobase_include_HEADERS +=                       \
272  vnet/ip/format.h                               \
273  vnet/ip/icmp46_packet.h                        \
274  vnet/ip/icmp4.h                                \
275  vnet/ip/icmp6.h                                \
276  vnet/ip/igmp_packet.h                          \
277  vnet/ip/ip.h                                   \
278  vnet/ip/ip4.h                                  \
279  vnet/ip/ip4_mtrie.h                            \
280  vnet/ip/ip4_error.h                            \
281  vnet/ip/ip4_packet.h                           \
282  vnet/ip/ip6.h                                  \
283  vnet/ip/ip6_error.h                            \
284  vnet/ip/ip6_hop_by_hop.h                       \
285  vnet/ip/ip6_hop_by_hop_packet.h                \
286  vnet/ip/ip6_packet.h                           \
287  vnet/ip/lookup.h                               \
288  vnet/ip/ip_packet.h                            \
289  vnet/ip/ports.def                              \
290  vnet/ip/protocols.def                          \
291  vnet/ip/tcp_packet.h                           \
292  vnet/ip/udp.h                                  \
293  vnet/ip/udp_error.def                          \
294  vnet/ip/udp_packet.h
295
296 ########################################
297 # Layer 3 protocol: IPSec
298 ########################################
299 if WITH_IPSEC
300 libvnet_la_SOURCES +=                           \
301  vnet/ipsec/ipsec.c                             \
302  vnet/ipsec/ipsec_cli.c                         \
303  vnet/ipsec/ipsec_format.c                      \
304  vnet/ipsec/ipsec_input.c                       \
305  vnet/ipsec/ipsec_if.c                          \
306  vnet/ipsec/ipsec_if_in.c                       \
307  vnet/ipsec/ipsec_if_out.c                      \
308  vnet/ipsec/esp_encrypt.c                       \
309  vnet/ipsec/esp_decrypt.c                       \
310  vnet/ipsec/ikev2.c                             \
311  vnet/ipsec/ikev2_crypto.c                      \
312  vnet/ipsec/ikev2_cli.c                         \
313  vnet/ipsec/ikev2_payload.c                     \
314  vnet/ipsec/ikev2_format.c
315 endif 
316
317 libvnet_la_SOURCES +=                           \
318  vnet/ipsec/ipsec_output.c
319
320 nobase_include_HEADERS +=                       \
321  vnet/ipsec/ipsec.h                             \
322  vnet/ipsec/esp.h                               \
323  vnet/ipsec/ikev2.h                             \
324  vnet/ipsec/ikev2_priv.h
325
326 ########################################
327 # Layer 3 protocol: osi
328 ########################################
329 libvnet_la_SOURCES +=                           \
330  vnet/osi/node.c                                \
331  vnet/osi/osi.c                                 \
332  vnet/osi/pg.c
333
334 nobase_include_HEADERS +=                       \
335  vnet/osi/osi.h
336
337 ########################################
338 # Layer 3 protocol: MAP
339 ########################################
340 libvnet_la_SOURCES +=                           \
341  vnet/map/map.c                                 \
342  vnet/map/ip4_map.c                             \
343  vnet/map/ip6_map.c                             \
344  vnet/map/sixrd.c                               \
345  vnet/map/ip4_sixrd.c                           \
346  vnet/map/ip6_sixrd.c                           \
347  vnet/map/ip4_map_t.c                           \
348  vnet/map/ip6_map_t.c
349
350 nobase_include_HEADERS +=                       \
351  vnet/map/map.h                                 \
352  vnet/map/sixrd.h
353
354 ########################################
355 # Tunnel protocol: gre
356 ########################################
357 libvnet_la_SOURCES +=                           \
358  vnet/gre/gre.c                                 \
359  vnet/gre/node.c                                \
360  vnet/gre/interface.c                           \
361  vnet/gre/pg.c
362  
363 nobase_include_HEADERS +=                       \
364  vnet/gre/gre.h                                 \
365  vnet/gre/packet.h                              \
366  vnet/gre/error.def
367
368 ########################################
369 # Tunnel protocol: l2tpv3
370 ########################################
371 libvnet_la_SOURCES +=                           \
372  vnet/l2tp/l2tp.c                               \
373  vnet/l2tp/encap.c                              \
374  vnet/l2tp/decap.c                              \
375  vnet/l2tp/pg.c
376  
377 nobase_include_HEADERS +=                       \
378  vnet/l2tp/l2tp.h                               \
379  vnet/l2tp/packet.h                             
380
381 ########################################
382 # Tunnel protocol: gre+mpls
383 ########################################
384 libvnet_la_SOURCES +=                           \
385  vnet/mpls-gre/mpls.c                           \
386  vnet/mpls-gre/node.c                           \
387  vnet/mpls-gre/interface.c                      \
388  vnet/mpls-gre/policy_encap.c                   \
389  vnet/mpls-gre/pg.c
390  
391 nobase_include_HEADERS +=                       \
392  vnet/mpls-gre/mpls.h                           \
393  vnet/mpls-gre/packet.h                         \
394  vnet/mpls-gre/error.def
395
396
397 ########################################
398 # Tunnel protocol: nsh-gre
399 ########################################
400
401 libvnet_la_SOURCES +=                           \
402  vnet/nsh-gre/nsh_gre.c                         \
403  vnet/nsh-gre/encap.c                           \
404  vnet/nsh-gre/decap.c
405
406 nobase_include_HEADERS +=                       \
407  vnet/nsh-gre/nsh_gre.h                         \
408  vnet/nsh-gre/nsh_gre_packet.h                  \
409  vnet/nsh-gre/nsh_gre_error.def
410
411 ########################################
412 # Tunnel protocol: nsh-vxlan-gpe
413 ########################################
414
415 libvnet_la_SOURCES +=                           \
416  vnet/nsh-vxlan-gpe/nsh_vxlan_gpe.c             \
417  vnet/nsh-vxlan-gpe/encap.c                     \
418  vnet/nsh-vxlan-gpe/decap.c
419
420 nobase_include_HEADERS +=                       \
421  vnet/nsh-vxlan-gpe/nsh_vxlan_gpe.h             \
422  vnet/nsh-vxlan-gpe/vxlan_gpe_packet.h          \
423  vnet/nsh-vxlan-gpe/nsh_vxlan_gpe_error.def
424
425 ########################################
426 # Tunnel protocol: lisp-gpe
427 ########################################
428
429 libvnet_la_SOURCES +=                           \
430  vnet/lisp-gpe/lisp_gpe.c                       \
431  vnet/lisp-gpe/encap.c                          \
432  vnet/lisp-gpe/decap.c
433
434 nobase_include_HEADERS +=                       \
435  vnet/lisp-gpe/lisp_gpe.h                       \
436  vnet/lisp-gpe/lisp_gpe_packet.h                \
437  vnet/lisp-gpe/lisp_gpe_error.def
438
439 ########################################
440 # DHCP client
441 ########################################
442 libvnet_la_SOURCES +=                           \
443  vnet/dhcp/client.c                             \
444  vnet/dhcp/client.h     
445
446 nobase_include_HEADERS +=                       \
447  vnet/dhcp/client.h     
448
449 ########################################
450 # DHCP proxy
451 ########################################
452 libvnet_la_SOURCES +=                           \
453  vnet/dhcp/proxy_node.c                         \
454  vnet/dhcp/proxy.h
455  
456 nobase_include_HEADERS +=                       \
457  vnet/dhcp/packet.h                             \
458  vnet/dhcp/proxy.h                              \
459  vnet/dhcp/proxy_error.def
460
461 ########################################
462 # ipv6 segment routing
463 ########################################
464
465 if WITH_IPV6SR
466 libvnet_la_SOURCES +=                           \
467  vnet/sr/sr.c
468 endif
469  
470 nobase_include_HEADERS +=                       \
471  vnet/sr/sr_packet.h                            \
472  vnet/sr/sr_error.def                           \
473  vnet/sr/sr.h
474
475 ########################################
476 # CGN
477 #########################################
478
479 if WITH_VCGN
480 libvnet_la_SOURCES +=                                           \
481  vnet/vcgn/cnat_bulk_port.c                                     \
482  vnet/vcgn/cnat_config.c                                        \
483  vnet/vcgn/cnat_db_scanner.c                                    \
484  vnet/vcgn/cnat_db_v2.c                                         \
485  vnet/vcgn/cnat_debug_msg_handler.c                             \
486  vnet/vcgn/cnat_cli_handler.c                                   \
487  vnet/vcgn/cnat_global.c                                        \
488  vnet/vcgn/cnat_ipv4_udp_inside_input.c                         \
489  vnet/vcgn/cnat_ipv4_udp_inside_input_exceptions.c              \
490  vnet/vcgn/cnat_ipv4_udp_outside_input.c                        \
491  vnet/vcgn/cnat_ipv4_tcp_inside_input.c                         \
492  vnet/vcgn/cnat_ipv4_tcp_inside_input_exceptions.c              \
493  vnet/vcgn/cnat_ipv4_tcp_outside_input.c                        \
494  vnet/vcgn/cnat_ipv4_icmp_query_inside_input.c                  \
495  vnet/vcgn/cnat_ipv4_icmp_query_inside_input_exception.c        \
496  vnet/vcgn/cnat_ipv4_icmp_query_outside_input.c                 \
497  vnet/vcgn/cnat_ipv4_icmp_error_inside_input.c                  \
498  vnet/vcgn/cnat_ipv4_icmp_error_outside_input.c                 \
499  vnet/vcgn/cnat_logging.c                                       \
500  vnet/vcgn/cnat_ports.c                                         \
501  vnet/vcgn/cnat_util.c                                          \
502  vnet/vcgn/cnat_show.c                                          \
503  vnet/vcgn/cnat_syslog.c                                        \
504  vnet/vcgn/cnat_v4_functions.c                                  \
505  vnet/vcgn/index_list.c                                         \
506  vnet/vcgn/spp_platform_trace_log.c                             \
507  vnet/vcgn/vcgn_classify.c
508 endif
509
510 ########################################
511 # DHCPv6 proxy
512 ########################################
513 libvnet_la_SOURCES +=                           \
514  vnet/dhcpv6/proxy_node.c
515  
516 nobase_include_HEADERS +=                       \
517  vnet/dhcpv6/packet.h                           \
518  vnet/dhcpv6/proxy.h                            \
519  vnet/dhcpv6/proxy_error.def
520
521 ########################################
522 # IPFIX / netflow v10 
523 ########################################
524 libvnet_la_SOURCES +=                           \
525  vnet/flow/flow_report.c
526
527 nobase_include_HEADERS +=                       \
528  vnet/flow/flow_report.h                        \
529  vnet/flow/ipfix_info_elements.h                \
530  vnet/flow/ipfix_packet.h
531
532 ########################################
533 # IPFIX sample code
534 ########################################
535
536 libvnet_la_SOURCES +=                           \
537   vnet/flow/flow_report_sample.c
538
539 nobase_include_HEADERS +=                       \
540   vnet/flow/flow_report_sample.h
541
542 ########################################
543 # lawful intercept
544 ########################################
545
546 libvnet_la_SOURCES +=                           \
547   vnet/lawful-intercept/lawful_intercept.c      \
548   vnet/lawful-intercept/node.c
549
550 nobase_include_HEADERS +=                       \
551   vnet/dpdk_replication.h                       \
552   vnet/lawful-intercept/lawful_intercept.h
553
554 ########################################
555 # Packet generator
556 ########################################
557
558 libvnet_la_SOURCES +=                           \
559   vnet/pg/cli.c                                 \
560   vnet/pg/edit.c                                \
561   vnet/pg/init.c                                \
562   vnet/pg/input.c                               \
563   vnet/pg/output.c                              \
564   vnet/pg/stream.c
565
566 nobase_include_HEADERS +=                       \
567   vnet/pg/pg.h                                  \
568   vnet/pg/edit.h
569
570 ########################################
571 # Intel DPDK
572 ########################################
573 if WITH_DPDK
574 libvnet_la_SOURCES +=                           \
575   vnet/devices/dpdk/dpdk_priv.h         \
576   vnet/devices/dpdk/device.c            \
577   vnet/devices/dpdk/format.c            \
578   vnet/devices/dpdk/init.c                      \
579   vnet/devices/dpdk/node.c                      \
580   vnet/devices/dpdk/threads.c       \
581   vnet/devices/dpdk/vhost_user.c    \
582   vnet/devices/dpdk/cli.c
583
584 nobase_include_HEADERS +=                       \
585   vnet/devices/dpdk/dpdk.h                      \
586   vnet/devices/dpdk/threads.h
587 endif
588
589 ########################################
590 # virtio
591 ########################################
592
593 if WITH_DPDK
594 libvnet_la_SOURCES +=       \
595   vnet/devices/virtio/vhost-user.c
596
597 nobase_include_HEADERS +=     \
598   vnet/devices/virtio/vhost-user.h
599 endif WITH_DPDK
600
601 ########################################
602 # ssvm ethernet
603 ########################################
604 libvnet_la_SOURCES +=                           \
605   vnet/devices/ssvm/ssvm_eth.c                  \
606   vnet/devices/ssvm/node.c
607
608 nobase_include_HEADERS +=                       \
609   vnet/devices/ssvm/ssvm_eth.h
610
611 ########################################
612 # Linux packet interface
613 ########################################
614
615 libvnet_la_SOURCES +=                           \
616   vnet/devices/af_packet/af_packet.c            \
617   vnet/devices/af_packet/device.c               \
618   vnet/devices/af_packet/node.c                 \
619   vnet/devices/af_packet/cli.c
620
621 nobase_include_HEADERS +=                       \
622   vnet/devices/af_packet/af_packet.h
623
624 ########################################
625 # Unix kernel related
626 ########################################
627
628 # FIXME: vnet/unix/hgshm.c 
629
630 libvnet_la_SOURCES +=                           \
631   vnet/unix/gdb_funcs.c                         \
632   vnet/unix/pcap.c                              \
633   vnet/unix/tapcli.c                            \
634   vnet/unix/tuntap.c
635
636 nobase_include_HEADERS +=                       \
637   vnet/unix/pcap.h                              \
638   vnet/unix/tuntap.h                            \
639   vnet/unix/tapcli.h
640
641 ########################################
642 # Plugin client library
643 ########################################
644
645 libvnetplugin_la_SOURCES +=                    \
646   vnet/plugin/p1.c
647
648 nobase_include_HEADERS +=                      \
649   vnet/plugin/plugin.h
650
651 lib_LTLIBRARIES = libvnet.la libvnetplugin.la
652
653 dpdk_libs = 
654
655 if WITH_DPDK
656 dpdk_libs += -l:libdpdk.a
657 endif
658
659 pcap2pg_SOURCES =                               \
660   vnet/unix/pcap2pg.c                           \
661   vnet/unix/pcap.h
662
663 pcap2pg_LDFLAGS = -static
664 pcap2pg_LDADD = libvnet.la -l:libvppinfra.a -lpthread -lm -ldl
665
666 noinst_PROGRAMS += pcap2pg