From 8559d95cccede8259a7a31489de9224958eab52b Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Thu, 27 Oct 2016 13:21:49 +0200 Subject: [PATCH] Makefile: hide recursive make calls --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ff1ccd39b..6c3ca5b55 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ # Makefile originally taken from coq-club %: Makefile.coq phony - +make -f Makefile.coq $@ + +@make -f Makefile.coq $@ all: Makefile.coq - +make -f Makefile.coq all + +@make -f Makefile.coq all clean: Makefile.coq - +make -f Makefile.coq clean + +@make -f Makefile.coq clean rm -f Makefile.coq Makefile.coq: _CoqProject Makefile -- GitLab