VPP-61 Patch2/2 Removing NSH from VPP for move to NSH_SFC
[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 # Tunnel protocol: vxlan-gpe
403 ########################################
404
405 libvnet_la_SOURCES +=                           \
406  vnet/vxlan-gpe/vxlan_gpe.c                     \
407  vnet/vxlan-gpe/encap.c                         \
408  vnet/vxlan-gpe/decap.c
409
410 nobase_include_HEADERS +=                       \
411  vnet/vxlan-gpe/vxlan_gpe.h                     \
412  vnet/vxlan-gpe/vxlan_gpe_packet.h              \
413  vnet/vxlan-gpe/vxlan_gpe_error.def
414
415 ########################################
416 # LISP control plane: lisp-cp
417 ########################################
418
419 libvnet_la_SOURCES +=                           \
420  vnet/lisp-cp/lisp_types.c                      \
421  vnet/lisp-cp/control.c                         \
422  vnet/lisp-cp/gid_dictionary.c                  \
423  vnet/lisp-cp/lisp_msg_serdes.c                 \
424  vnet/lisp-cp/packets.c                 
425
426 nobase_include_HEADERS +=                       \
427  vnet/lisp-cp/lisp_types.h                      \
428  vnet/lisp-cp/packets.h                         \
429  vnet/lisp-cp/gid_dictionary.h                  \
430  vnet/lisp-cp/lisp_cp_messages.h                \
431  vnet/lisp-cp/lisp_msg_serdes.h                 \
432  vnet/lisp-cp/control.h                         
433
434
435 if ENABLE_TESTS
436 LDS = -lvppinfra -l:libvlib.a -l:libdpdk.a -l:libvlibmemory.a \
437         -l:libvlibapi.a -l:libsvm.a -lpthread -ldl -lrt -lm -l:libvlib_unix.a
438
439 TESTS += test_cp_serdes test_lisp_types
440
441 test_cp_serdes_SOURCES =                        \
442  test/lisp-cp/test_cp_serdes.c          \
443  vnet/lisp-cp/lisp_msg_serdes.c                 \
444  vnet/lisp-cp/lisp_types.c                      \
445  vnet/lisp-cp/packets.c                         \
446  vnet/ip/ip_checksum.c
447
448 test_lisp_types_SOURCES =                       \
449  test/lisp-cp/test_lisp_types.c         \
450  vnet/lisp-cp/lisp_types.c
451
452 test_cp_serdes_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
453 test_lisp_types_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
454
455 test_cp_serdes_LDADD = libvnet.la $(LDS)
456 test_lisp_types_LDADD = libvnet.la $(LDS)
457
458 test_cp_serdes_LDFLAGS = -static
459 test_lisp_types_LDFLAGS = -static
460 endif
461
462 ########################################
463 # Tunnel protocol: lisp-gpe
464 ########################################
465
466 libvnet_la_SOURCES +=                           \
467  vnet/lisp-gpe/lisp_gpe.c                       \
468  vnet/lisp-gpe/interface.c                      \
469  vnet/lisp-gpe/ip_forward.c                     \
470  vnet/lisp-gpe/decap.c                          
471
472 nobase_include_HEADERS +=                       \
473  vnet/lisp-gpe/lisp_gpe.h                       \
474  vnet/lisp-gpe/lisp_gpe_packet.h                \
475  vnet/lisp-gpe/lisp_gpe_error.def               
476
477 if ENABLE_TESTS
478 TESTS += test_test
479
480 test_test_SOURCES = test/lisp-gpe/test.c
481
482 test_test_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
483
484 test_test_LDADD = $(LIBOBJS)
485
486 noinst_PROGRAMS += $(TESTS)
487 check_PROGRAMS = $(TESTS)
488 endif
489
490 ########################################
491 # DHCP client
492 ########################################
493 libvnet_la_SOURCES +=                           \
494  vnet/dhcp/client.c                             \
495  vnet/dhcp/client.h     
496
497 nobase_include_HEADERS +=                       \
498  vnet/dhcp/client.h     
499
500 ########################################
501 # DHCP proxy
502 ########################################
503 libvnet_la_SOURCES +=                           \
504  vnet/dhcp/proxy_node.c                         \
505  vnet/dhcp/proxy.h
506  
507 nobase_include_HEADERS +=                       \
508  vnet/dhcp/packet.h                             \
509  vnet/dhcp/proxy.h                              \
510  vnet/dhcp/proxy_error.def
511
512 ########################################
513 # ipv6 segment routing
514 ########################################
515
516 if WITH_IPV6SR
517 libvnet_la_SOURCES +=                           \
518  vnet/sr/sr.c                                   \
519  vnet/sr/sr_replicate.c
520 endif
521  
522 nobase_include_HEADERS +=                       \
523  vnet/sr/sr_packet.h                            \
524  vnet/sr/sr_error.def                           \
525  vnet/sr/sr.h
526
527 ########################################
528 # CGN
529 #########################################
530
531 if WITH_VCGN
532 libvnet_la_SOURCES +=                                           \
533  vnet/vcgn/cnat_bulk_port.c                                     \
534  vnet/vcgn/cnat_config.c                                        \
535  vnet/vcgn/cnat_db_scanner.c                                    \
536  vnet/vcgn/cnat_db_v2.c                                         \
537  vnet/vcgn/cnat_debug_msg_handler.c                             \
538  vnet/vcgn/cnat_cli_handler.c                                   \
539  vnet/vcgn/cnat_global.c                                        \
540  vnet/vcgn/cnat_ipv4_udp_inside_input.c                         \
541  vnet/vcgn/cnat_ipv4_udp_inside_input_exceptions.c              \
542  vnet/vcgn/cnat_ipv4_udp_outside_input.c                        \
543  vnet/vcgn/cnat_ipv4_tcp_inside_input.c                         \
544  vnet/vcgn/cnat_ipv4_tcp_inside_input_exceptions.c              \
545  vnet/vcgn/cnat_ipv4_tcp_outside_input.c                        \
546  vnet/vcgn/cnat_ipv4_icmp_query_inside_input.c                  \
547  vnet/vcgn/cnat_ipv4_icmp_query_inside_input_exception.c        \
548  vnet/vcgn/cnat_ipv4_icmp_query_outside_input.c                 \
549  vnet/vcgn/cnat_ipv4_icmp_error_inside_input.c                  \
550  vnet/vcgn/cnat_ipv4_icmp_error_outside_input.c                 \
551  vnet/vcgn/cnat_logging.c                                       \
552  vnet/vcgn/cnat_ports.c                                         \
553  vnet/vcgn/cnat_util.c                                          \
554  vnet/vcgn/cnat_show.c                                          \
555  vnet/vcgn/cnat_syslog.c                                        \
556  vnet/vcgn/cnat_v4_functions.c                                  \
557  vnet/vcgn/index_list.c                                         \
558  vnet/vcgn/spp_platform_trace_log.c                             \
559  vnet/vcgn/vcgn_classify.c
560 endif
561
562 ########################################
563 # DHCPv6 proxy
564 ########################################
565 libvnet_la_SOURCES +=                           \
566  vnet/dhcpv6/proxy_node.c
567  
568 nobase_include_HEADERS +=                       \
569  vnet/dhcpv6/packet.h                           \
570  vnet/dhcpv6/proxy.h                            \
571  vnet/dhcpv6/proxy_error.def
572
573 ########################################
574 # IPFIX / netflow v10 
575 ########################################
576 libvnet_la_SOURCES +=                           \
577  vnet/flow/flow_report.c
578
579 nobase_include_HEADERS +=                       \
580  vnet/flow/flow_report.h                        \
581  vnet/flow/ipfix_info_elements.h                \
582  vnet/flow/ipfix_packet.h
583
584 ########################################
585 # IPFIX sample code
586 ########################################
587
588 libvnet_la_SOURCES +=                           \
589   vnet/flow/flow_report_sample.c
590
591 nobase_include_HEADERS +=                       \
592   vnet/flow/flow_report_sample.h
593
594 ########################################
595 # lawful intercept
596 ########################################
597
598 libvnet_la_SOURCES +=                           \
599   vnet/lawful-intercept/lawful_intercept.c      \
600   vnet/lawful-intercept/node.c
601
602 nobase_include_HEADERS +=                       \
603   vnet/dpdk_replication.h                       \
604   vnet/lawful-intercept/lawful_intercept.h
605
606 ########################################
607 # Packet generator
608 ########################################
609
610 libvnet_la_SOURCES +=                           \
611   vnet/pg/cli.c                                 \
612   vnet/pg/edit.c                                \
613   vnet/pg/init.c                                \
614   vnet/pg/input.c                               \
615   vnet/pg/output.c                              \
616   vnet/pg/stream.c
617
618 nobase_include_HEADERS +=                       \
619   vnet/pg/pg.h                                  \
620   vnet/pg/edit.h
621
622 ########################################
623 # Intel DPDK
624 ########################################
625 if WITH_DPDK
626 libvnet_la_SOURCES +=                           \
627   vnet/devices/dpdk/dpdk_priv.h         \
628   vnet/devices/dpdk/device.c            \
629   vnet/devices/dpdk/format.c            \
630   vnet/devices/dpdk/init.c                      \
631   vnet/devices/dpdk/node.c                      \
632   vnet/devices/dpdk/threads.c       \
633   vnet/devices/dpdk/vhost_user.c    \
634   vnet/devices/dpdk/cli.c
635
636 nobase_include_HEADERS +=                       \
637   vnet/devices/dpdk/dpdk.h                      \
638   vnet/devices/dpdk/threads.h
639 endif
640
641 ########################################
642 # virtio
643 ########################################
644
645 if WITH_DPDK
646 libvnet_la_SOURCES +=       \
647   vnet/devices/virtio/vhost-user.c
648
649 nobase_include_HEADERS +=     \
650   vnet/devices/virtio/vhost-user.h
651 endif WITH_DPDK
652
653 ########################################
654 # ssvm ethernet
655 ########################################
656 libvnet_la_SOURCES +=                           \
657   vnet/devices/ssvm/ssvm_eth.c                  \
658   vnet/devices/ssvm/node.c
659
660 nobase_include_HEADERS +=                       \
661   vnet/devices/ssvm/ssvm_eth.h
662
663 ########################################
664 # Linux packet interface
665 ########################################
666
667 libvnet_la_SOURCES +=                           \
668   vnet/devices/af_packet/af_packet.c            \
669   vnet/devices/af_packet/device.c               \
670   vnet/devices/af_packet/node.c                 \
671   vnet/devices/af_packet/cli.c
672
673 nobase_include_HEADERS +=                       \
674   vnet/devices/af_packet/af_packet.h
675
676 ########################################
677 # NETMAP interface
678 ########################################
679
680 libvnet_la_SOURCES +=                           \
681   vnet/devices/netmap/netmap.c                  \
682   vnet/devices/netmap/device.c                  \
683   vnet/devices/netmap/node.c                    \
684   vnet/devices/netmap/cli.c
685
686 nobase_include_HEADERS +=                       \
687   vnet/devices/netmap/netmap.h
688
689
690 ########################################
691 # Unix kernel related
692 ########################################
693
694 # FIXME: vnet/unix/hgshm.c 
695
696 libvnet_la_SOURCES +=                           \
697   vnet/unix/gdb_funcs.c                         \
698   vnet/unix/pcap.c                              \
699   vnet/unix/tapcli.c                            \
700   vnet/unix/tuntap.c
701
702 nobase_include_HEADERS +=                       \
703   vnet/unix/pcap.h                              \
704   vnet/unix/tuntap.h                            \
705   vnet/unix/tapcli.h
706
707 ########################################
708 # Plugin client library
709 ########################################
710
711 libvnetplugin_la_SOURCES +=                    \
712   vnet/plugin/p1.c
713
714 nobase_include_HEADERS +=                      \
715   vnet/plugin/plugin.h
716
717 ########################################
718 # Service Chain verification util
719 ########################################
720 libvnet_la_SOURCES +=       \
721  vnet/lib-scv/scv_util.c
722
723 nobase_include_HEADERS +=                       \
724  vnet/lib-scv/scv_util.h                        \
725  vnet/lib-scv/math64.h
726
727 lib_LTLIBRARIES = libvnet.la libvnetplugin.la
728
729 dpdk_libs = 
730
731 if WITH_DPDK
732 dpdk_libs += -l:libdpdk.a
733 endif
734
735 pcap2pg_SOURCES =                               \
736   vnet/unix/pcap2pg.c                           \
737   vnet/unix/pcap.h
738
739 pcap2pg_LDFLAGS = -static
740 pcap2pg_LDADD = libvnet.la -l:libvppinfra.a -lpthread -lm -ldl
741
742 noinst_PROGRAMS += pcap2pg
743
744