doc: add patch dependency syntax to contributing guide
[dpdk.git] / lib / librte_gro / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_gro.a
8
9 CFLAGS += -O3
10 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)
11 LDLIBS += -lrte_eal -lrte_mbuf -lrte_ethdev -lrte_net
12
13 EXPORT_MAP := rte_gro_version.map
14
15 # source files
16 SRCS-$(CONFIG_RTE_LIBRTE_GRO) += rte_gro.c
17 SRCS-$(CONFIG_RTE_LIBRTE_GRO) += gro_tcp4.c
18 SRCS-$(CONFIG_RTE_LIBRTE_GRO) += gro_vxlan_tcp4.c
19
20 # install this header file
21 SYMLINK-$(CONFIG_RTE_LIBRTE_GRO)-include += rte_gro.h
22
23 include $(RTE_SDK)/mk/rte.lib.mk