Skip to content
Snippets Groups Projects
Commit 8559d95c authored by Ralf Jung's avatar Ralf Jung
Browse files

Makefile: hide recursive make calls

parent be019f76
No related branches found
No related tags found
No related merge requests found
# Makefile originally taken from coq-club # Makefile originally taken from coq-club
%: Makefile.coq phony %: Makefile.coq phony
+make -f Makefile.coq $@ +@make -f Makefile.coq $@
all: Makefile.coq all: Makefile.coq
+make -f Makefile.coq all +@make -f Makefile.coq all
clean: Makefile.coq clean: Makefile.coq
+make -f Makefile.coq clean +@make -f Makefile.coq clean
rm -f Makefile.coq rm -f Makefile.coq
Makefile.coq: _CoqProject Makefile Makefile.coq: _CoqProject Makefile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment