From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tama50.ecl.ntt.co.jp (tama50.ecl.ntt.co.jp [129.60.39.147]) by dpdk.org (Postfix) with ESMTP id 3F01C1B706 for ; Mon, 26 Nov 2018 08:28:19 +0100 (CET) Received: from vc1.ecl.ntt.co.jp (vc1.ecl.ntt.co.jp [129.60.86.153]) by tama50.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id wAQ7SIoC031973; Mon, 26 Nov 2018 16:28:18 +0900 Received: from vc1.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id B4F02EA81DB; Mon, 26 Nov 2018 16:28:18 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by vc1.ecl.ntt.co.jp (Postfix) with ESMTP id 9C3EFEA7FC3; Mon, 26 Nov 2018 16:28:18 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, spp@dpdk.org, ogawa.yasufumi@lab.ntt.co.jp Date: Mon, 26 Nov 2018 16:26:03 +0900 Message-Id: <1543217166-13731-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 X-TM-AS-MML: disable Subject: [spp] [PATCH 0/3] Revise makefile 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: Mon, 26 Nov 2018 07:28:20 -0000 From: Yasufumi Ogawa Some of Makefiles of SPP does not work property and need to be revised. This patches are to fix the problems. It also include changing to use GNUmakefile instead of Makefile as in DPDK. * It does not check dependency for compilation. If you update some of source codes, you need to `make clean` before `make`. * `Makefile.spp` is used to compile DPDK with options for testing. However, target is remained as old `x86_64-ivshmem-linuxapp-gcc`. Yasufumi Ogawa (3): makefile: fix problem of dependency is not checked makefile: introduce GNUmakefile makefile: update Makefile for testing DPDK GNUmakefile | 38 ++++++++++++++++++++++++++++++++++++++ Makefile | 36 +----------------------------------- Makefile.spp | 2 +- src/mirror/Makefile | 2 +- src/nfv/Makefile | 2 +- src/primary/Makefile | 2 +- src/vf/Makefile | 2 +- src/vm/Makefile | 2 +- 8 files changed, 45 insertions(+), 41 deletions(-) create mode 100644 GNUmakefile -- 2.7.4