build: remove individual library versions
[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 # install public header files to enable compilation of the hypervisor level
21 # dpdk application
22 SYMLINK-$(CONFIG_RTE_LIBRTE_AVP_PMD)-include += rte_avp_common.h
23 SYMLINK-$(CONFIG_RTE_LIBRTE_AVP_PMD)-include += rte_avp_fifo.h
24
25 #
26 # all source files are stored in SRCS-y
27 #
28 SRCS-$(CONFIG_RTE_LIBRTE_AVP_PMD) += avp_ethdev.c
29
30 include $(RTE_SDK)/mk/rte.lib.mk