From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail04.ics.ntt-tx.co.jp (mail05.ics.ntt-tx.co.jp [210.232.35.69]) by dpdk.org (Postfix) with ESMTP id E407A5A44 for ; Wed, 21 Nov 2018 02:41:06 +0100 (CET) Received: from gwchk03.silk.ntt-tx.co.jp (gwchk03.silk.ntt-tx.co.jp [10.107.0.111]) by mail04.ics.ntt-tx.co.jp (unknown) with ESMTP id wAL1f5I3002635; Wed, 21 Nov 2018 10:41:05 +0900 Received: (from root@localhost) by gwchk03.silk.ntt-tx.co.jp (unknown) id wAL1f5eU004426; Wed, 21 Nov 2018 10:41:05 +0900 Received: from gwchk.silk.ntt-tx.co.jp [10.107.0.110] by gwchk03.silk.ntt-tx.co.jp with ESMTP id LAA01756; Wed, 21 Nov 2018 10:36:00 +0900 Received: from imss03.silk.ntt-tx.co.jp (localhost [127.0.0.1]) by imss03.silk.ntt-tx.co.jp (unknown) with ESMTP id wAL1Zx9H009607; Wed, 21 Nov 2018 10:36:00 +0900 Received: from mgate02.silk.ntt-tx.co.jp (smtp02.silk.ntt-tx.co.jp [10.107.0.37]) by imss03.silk.ntt-tx.co.jp (unknown) with ESMTP id wAL1Zxc8009602; Wed, 21 Nov 2018 10:35:59 +0900 Message-Id: <201811210135.wAL1Zxc8009602@imss03.silk.ntt-tx.co.jp> Received: from localhost by mgate02.silk.ntt-tx.co.jp (unknown) id wAL1ZwWW008346 ; Wed, 21 Nov 2018 10:35:59 +0900 From: x-fn-spp@sl.ntt-tx.co.jp To: ferruh.yigit@intel.com, ogawa.yasufumi@lab.ntt.co.jp Cc: spp@dpdk.org Date: Wed, 21 Nov 2018 10:35:39 +0900 X-Mailer: git-send-email 2.18.0 In-Reply-To: <20181121013558.8869-1-x-fn-spp@sl.ntt-tx.co.jp> References: <20181121013558.8869-1-x-fn-spp@sl.ntt-tx.co.jp> X-TM-AS-MML: No Subject: [spp] [PATCH 04/23] spp_vf: update Makefile for common files X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2018 01:41:07 -0000 From: Hideyuki Yamashita Update `SRCS-y` and `CFLAGS` options because the paths of common files are changed. Signed-off-by: Hideyuki Yamashita Signed-off-by: Naoki Takada --- src/vf/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/vf/Makefile b/src/vf/Makefile index 88381be..a1c7886 100644 --- a/src/vf/Makefile +++ b/src/vf/Makefile @@ -13,12 +13,13 @@ APP = spp_vf # all source are stored in SRCS-y SRCS-y := spp_vf.c classifier_mac.c spp_forward.c -SRCS-y += string_buffer.c ringlatencystats.c spp_port.c -SRCS-y += command_conn.c command_dec.c command_proc.c +SRCS-y += common/string_buffer.c common/ringlatencystats.c common/spp_port.c +SRCS-y += common/command_conn.c common/command_dec.c common/command_proc.c SRCS-y += ../shared/common.c CFLAGS += $(WERROR_FLAGS) -O3 CFLAGS += -I$(SRCDIR)/../shared +CFLAGS += -I$(SRCDIR)/common #CFLAGS += -DSPP_DEMONIZE #CFLAGS += -DSPP_RINGLATENCYSTATS_ENABLE -- 2.18.0