build: create dummy Makefile
authorBruce Richardson <bruce.richardson@intel.com>
Thu, 3 Sep 2020 15:26:49 +0000 (16:26 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 7 Sep 2020 21:51:57 +0000 (23:51 +0200)
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

index 571277a..4a9c17a 100644 (file)
--- 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/"