drivers/net: use ack in interrupt handlers
[dpdk.git] / drivers / net / avp / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2013-2017, Wind River Systems, Inc.
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 #
7 # library name
8 #
9 LIB = librte_pmd_avp.a
10
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)
13 CFLAGS += -DALLOW_EXPERIMENTAL_API
14 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
15 LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs
16 LDLIBS += -lrte_bus_pci
17
18 EXPORT_MAP := rte_pmd_avp_version.map
19
20 LIBABIVER := 1
21
22 # install public header files to enable compilation of the hypervisor level
23 # dpdk application
24 SYMLINK-$(CONFIG_RTE_LIBRTE_AVP_PMD)-include += rte_avp_common.h
25 SYMLINK-$(CONFIG_RTE_LIBRTE_AVP_PMD)-include += rte_avp_fifo.h
26
27 #
28 # all source files are stored in SRCS-y
29 #
30 SRCS-$(CONFIG_RTE_LIBRTE_AVP_PMD) += avp_ethdev.c
31
32 include $(RTE_SDK)/mk/rte.lib.mk