diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -123,8 +123,11 @@ endif ifeq ($(NOCOMPILE),1) include $(TOPLEVEL)/Makefile.inc include $(TOPLEVEL)/payloads/Makefile.inc -real-all: config - +real-all: + @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2 + @echo "Please specify a config file or run 'make menuconfig' to" >&2 + @echo "generate a new config file." >&2 + @exit 1 else include $(DOTCONFIG) |