Makefile: minor fix to the ocamltest rules

(make -C ocamltest) will run the first rule of the ocamltest Makefile,
which happens to be the 'all' rule. This is not robust to the addition
of new rules in some of the included Makefile, and indeed a previous
version of the previous commit broke it inadvertently.
master
Gabriel Scherer 2019-07-30 22:28:59 +02:00
parent 065fea1edd
commit 0bc3e66d9c
1 changed files with 2 additions and 2 deletions

View File

@ -1109,10 +1109,10 @@ ocamldoc.opt: ocamlc.opt ocamlyacc ocamllex
# OCamltest
ocamltest: ocamlc ocamlyacc ocamllex
$(MAKE) -C ocamltest
$(MAKE) -C ocamltest all
ocamltest.opt: ocamlc.opt ocamlyacc ocamllex
$(MAKE) -C ocamltest ocamltest.opt$(EXE)
$(MAKE) -C ocamltest allopt
partialclean::
$(MAKE) -C ocamltest clean