Skip to content

Commit

Permalink
Merge pull request #92 from t6s/fix_recursive_make
Browse files Browse the repository at this point in the history
use $(MAKE) instead of +make for recursive calls in Makefile
  • Loading branch information
SkySkimmer authored Jul 23, 2024
2 parents 379748e + 5050f65 commit 1f014ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
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.conf

_CoqProject:;
Expand All @@ -11,6 +11,6 @@ Makefile.coq: _CoqProject
$(COQBIN)coq_makefile -f _CoqProject -o Makefile.coq

%: Makefile.coq
+make -f Makefile.coq $@
$(MAKE) -f Makefile.coq $@

.PHONY: all clean

0 comments on commit 1f014ff

Please sign in to comment.