From 6328ba038e6079534c2c8efcf5efc78e1e417821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20M=C3=B6ller?= Date: Mon, 27 Apr 2020 17:54:47 +0200 Subject: [PATCH 1/3] samples/wrapper: don't fail "make install" added install target --- samples/wrapper/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/samples/wrapper/Makefile b/samples/wrapper/Makefile index 01cf8fc01f..4360e076c6 100644 --- a/samples/wrapper/Makefile +++ b/samples/wrapper/Makefile @@ -30,6 +30,11 @@ clean: distclean distclean: rm -f $(PROGS) *.o libstdc++.a +install: all + @echo "--- The example app $(PROG) is not installed ---" + +.PHONY: install all distclean clean + REGEXP_OBJS = \ regexp.o \ regsub.o \ From 49e073cfcd3d342aec1ad08d0686c82c371e97ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20M=C3=B6ller?= Date: Mon, 27 Apr 2020 18:00:05 +0200 Subject: [PATCH 2/3] PROG -> PROGS --- samples/wrapper/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/wrapper/Makefile b/samples/wrapper/Makefile index 4360e076c6..9c6160591d 100644 --- a/samples/wrapper/Makefile +++ b/samples/wrapper/Makefile @@ -31,7 +31,7 @@ distclean: rm -f $(PROGS) *.o libstdc++.a install: all - @echo "--- The example app $(PROG) is not installed ---" + @echo "--- The example app $(PROGS) is not installed ---" .PHONY: install all distclean clean From ff1fdb516d0c61c34139bb8cdf76dd2110745eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20M=C3=B6ller?= Date: Mon, 27 Apr 2020 20:28:36 +0200 Subject: [PATCH 3/3] samples/wrapper: no message with install --- samples/wrapper/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/wrapper/Makefile b/samples/wrapper/Makefile index 9c6160591d..c20af9446d 100644 --- a/samples/wrapper/Makefile +++ b/samples/wrapper/Makefile @@ -31,7 +31,6 @@ distclean: rm -f $(PROGS) *.o libstdc++.a install: all - @echo "--- The example app $(PROGS) is not installed ---" .PHONY: install all distclean clean