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