From be2d26bfd96a57a70b69b41116664638b93227b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Wed, 16 Sep 2020 15:20:31 +0200 Subject: [PATCH] makefile: add all target --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b095cb3..40b0e02 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ BIN = euscan .PHONY: + all clean install-user install-user-test @@ -11,6 +12,11 @@ BIN = euscan uninstall distclean +all: + @echo "Did nothing." + @echo "To do user installation use target: install-user" + + clean: sh clean.sh