summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Richardson <bruce.richardson@intel.com>2020-09-03 16:26:49 +0100
committerThomas Monjalon <thomas@monjalon.net>2020-09-07 23:51:57 +0200
commit05b6eee7bdabf7c17ed69c44515e0cd7d6e1da23 (patch)
treeb5a6fc3887afec593ddeff4535aa116aaf998edd /Makefile
parentf399b0171e6e64c8bbce42599afa35591a9d28f1 (diff)
build: create dummy Makefile
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
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/"