From ed44fa2ddff79336df1b17a8ab67ffbd29b16189 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ingy=20d=C3=B6t=20Net?= Date: Mon, 2 Jan 2017 10:46:29 -0800 Subject: [PATCH] Add reminder when user is using GNUmakefile --- .makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.makefile b/.makefile index af4625b..ba7c056 100644 --- a/.makefile +++ b/.makefile @@ -14,6 +14,11 @@ # bootstrapping tasks need to get a Makefile first, then we use the Makefile to # make our target. +# Remind user when they are using GNUmakefile: +ifeq ($(lastword $(MAKEFILE_LIST)),GNUmakefile) + $(info *** NOTE: GNUmakefile in use. ***) +endif + MAKE_TARGETS := \ all \ all-am \ -- 2.45.1