[v2,09/37] build: create dummy Makefile

Message ID 20200820124140.13451-10-ciara.power@intel.com (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series remove make support in DPDK |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Power, Ciara Aug. 20, 2020, 12:41 p.m. UTC
  From: Bruce Richardson <bruce.richardson@intel.com>

This patch modifies the root Makefile to act as a dummy Makefile for
when the make support is removed from DPDK in subsequent patches.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 Makefile | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
  

Patch

diff --git a/Makefile b/Makefile
index 571277aa5a..4a9c17a9de 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,7 @@ 
 # SPDX-License-Identifier: BSD-3-Clause
-# Copyright(c) 2010-2014 Intel Corporation
+# Copyright(c) 2010-2020 Intel Corporation
 
-.error Error please compile using GNU Make (gmake)
+.PHONY: all
+all:
+	@echo "To build DPDK please use meson and ninja as described at"
+	@echo "    https://core.dpdk.org/doc/quick-start/"