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