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