summaryrefslogtreecommitdiffstats
path: root/VNFs/UDP_Replay/Makefile
diff options
context:
space:
mode:
authorDeepak S <deepak.s@linux.intel.com>2017-06-02 04:46:35 +0530
committerDeepak S <deepak.s@linux.intel.com>2017-06-02 13:36:24 +0000
commit8771dd76aefffe0dd294d11984d733595946a650 (patch)
tree26e782f829d355841bf032dfa8ee266a7180e14c /VNFs/UDP_Replay/Makefile
parent6c6048847ae1a903c77a4fc00a9a809ce3e35fa3 (diff)
Revert "[SAMPLEVNF] Adding UDP Replay VNF"
This reverts commit 1b0802cbf10ac4d8911f0916d4ba0b02010924c8. Change-Id: Ic2bb69125d0d849b260475026a1088911d2d7109 Signed-off-by: Deepak S <deepak.s@linux.intel.com>
Diffstat (limited to 'VNFs/UDP_Replay/Makefile')
-rw-r--r--VNFs/UDP_Replay/Makefile97
1 files changed, 0 insertions, 97 deletions
diff --git a/VNFs/UDP_Replay/Makefile b/VNFs/UDP_Replay/Makefile
deleted file mode 100644
index e2375779..00000000
--- a/VNFs/UDP_Replay/Makefile
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright (c) 2017 Intel Corporation
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http:#www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-ifeq ($(RTE_SDK),)
-$(error "Please define RTE_SDK environment variable")
-endif
-
-# Default target, can be overriden by command line or environment
-RTE_TARGET ?= x86_64-native-linuxapp-gcc
-DIRS-y += pipeline
-
-include $(RTE_SDK)/mk/rte.vars.mk
-
-# binary name
-APP = UDP_Replay
-
-VPATH += $(VNF_CORE)/common/vnf_common
-VPATH += $(VNF_CORE)/common/VIL/pipeline_arpicmp
-VPATH += $(VNF_CORE)/common/VIL/conntrack
-VPATH += $(VNF_CORE)/common/VIL/pipeline_common
-VPATH += $(VNF_CORE)/common/VIL/pipeline_loadb
-VPATH += $(VNF_CORE)/common/VIL/pipeline_master
-VPATH += $(VNF_CORE)/common/VIL/pipeline_passthrough
-VPATH += $(SRCDIR)/pipeline
-VPATH += $(VNF_CORE)/common/VIL/pipeline_txrx
-VPATH += $(VNF_CORE)/common/VIL/l2l3_stack
-
-INC += $(wildcard *.h)
-INC += $(wildcard pipeline/*.h)
-INC += $(wildcard $(VNF_CORE)/common/vnf_common/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/pipeline_arpicmp/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/conntrack/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/pipeline_loadb/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/pipeline_common/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/pipeline_master/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/pipeline_passthrough/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/pipeline_txrx/*.h)
-INC += $(wildcard $(VNF_CORE)/common/VIL/l2l3_stack/*.h)
-
-CFLAGS += -I$(SRCDIR) -mrtm -mhle -I$(SRCDIR)/pipeline -I$(VNF_CORE)/common/vnf_common
-CFLAGS += -I$(VNF_CORE)/common/VIL/conntrack -I$(VNF_CORE)/common/VIL/l2l3_stack
-CFLAGS += -I$(VNF_CORE)/common/VIL/pipeline_common -I$(VNF_CORE)/common/VIL/pipeline_loadb
-CFLAGS += -I$(VNF_CORE)/common/VIL/pipeline_master -I$(VNF_CORE)/common/VIL/pipeline_passthrough
-CFLAGS += -I$(VNF_CORE)/common/VIL/pipeline_txrx
-CFLAGS += -I$(VNF_CORE)/common/VIL/pipeline_arpicmp
-
-# all source are stored in SRCS-y
-SRCS-y := main.c
-SRCS-y += parse_obj_list.c
-SRCS-y += config_parse.c
-SRCS-y += config_parse_tm.c
-SRCS-y += config_check.c
-
-SRCS-y += lib_arp.c
-SRCS-y += lib_icmpv6.c
-SRCS-y += interface.c
-SRCS-y += hle.c
-SRCS-y += tsx.c
-SRCS-y += l2_proto.c
-SRCS-y += l3fwd_main.c
-SRCS-y += l3fwd_lpm4.c
-SRCS-y += l3fwd_lpm6.c
-SRCS-y += bond.c
-
-SRCS-y += pipeline_common_be.c
-SRCS-y += pipeline_common_fe.c
-SRCS-y += pipeline_master_be.c
-SRCS-y += pipeline_master.c
-SRCS-y += pipeline_passthrough_be.c
-SRCS-y += pipeline_passthrough.c
-SRCS-y += pipeline_arpicmp.c
-SRCS-y += pipeline_loadb.c
-SRCS-y += pipeline_loadb_be.c
-SRCS-y += vnf_common.c
-SRCS-y += pipeline_arpicmp_be.c
-
-CFLAGS += -O3 $(USER_FLAGS)
-CFLAGS += $(WERROR_FLAGS)
-
-# workaround for a gcc bug with noreturn attribute
-# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
-ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
-CFLAGS_main.o += -Wno-return-type
-endif
-
-include $(RTE_SDK)/mk/rte.extapp.mk