From 05d21db298850722a49bf24ad8b1c7f121ce4b38 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 12 May 2014 17:30:24 +0200 Subject: [PATCH] formatting and minor details --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b217ea34..0682b144 100644 --- a/Makefile +++ b/Makefile @@ -54,14 +54,17 @@ DONTTEST=myocamlbuild.ml setup.ml QTESTABLE=$(filter-out $(DONTTEST), $(wildcard *.ml) $(wildcard *.mli)) qtest-clean: - rm -rf qtest/ + @rm -rf qtest/ qtest: qtest-clean build - mkdir -p qtest - qtest extract -o qtest/qtest_all.ml $(QTESTABLE) - ocamlbuild $(OPTIONS) -pkg oUnit,QTest2Lib -I . qtest/qtest_all.native + @mkdir -p qtest + @qtest extract -o qtest/qtest_all.ml $(QTESTABLE) 2> /dev/null + @ocamlbuild $(OPTIONS) -pkg oUnit,QTest2Lib -I . qtest/qtest_all.native + @echo ./qtest_all.native +test-all: test qtest + tags: otags *.ml *.mli