build: remove individual library versions
[dpdk.git] / drivers / net / null / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2015 IGEL Co.,Ltd.
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 #
7 # library name
8 #
9 LIB = librte_pmd_null.a
10
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS)
13 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
14 LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs
15 LDLIBS += -lrte_bus_vdev
16
17 EXPORT_MAP := rte_pmd_null_version.map
18
19 #
20 # all source are stored in SRCS-y
21 #
22 SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL) += rte_eth_null.c
23
24 include $(RTE_SDK)/mk/rte.lib.mk