build: remove individual library versions
[dpdk.git] / drivers / net / memif / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2018-2019 Cisco Systems, Inc.  All rights reserved.
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 #
7 # library name
8 #
9 LIB = librte_pmd_memif.a
10
11 EXPORT_MAP := rte_pmd_memif_version.map
12
13 CFLAGS += -O3
14 CFLAGS += $(WERROR_FLAGS)
15 CFLAGS += -DALLOW_EXPERIMENTAL_API
16 # Experimantal APIs:
17 # - rte_intr_callback_unregister_pending
18 # - rte_mp_action_register
19 # - rte_mp_reply
20 # - rte_mp_request_sync
21 # - rte_mcfg_get_single_file_segments
22 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool
23 LDLIBS += -lrte_ethdev -lrte_kvargs -lrte_net
24 LDLIBS += -lrte_hash
25 LDLIBS += -lrte_bus_vdev
26
27 #
28 # all source are stored in SRCS-y
29 #
30 SRCS-$(CONFIG_RTE_LIBRTE_PMD_MEMIF) += rte_eth_memif.c
31 SRCS-$(CONFIG_RTE_LIBRTE_PMD_MEMIF) += memif_socket.c
32
33 include $(RTE_SDK)/mk/rte.lib.mk