mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
formatting and minor details
This commit is contained in:
parent
1f36c9e02b
commit
05d21db298
1 changed files with 7 additions and 4 deletions
11
Makefile
11
Makefile
|
|
@ -54,14 +54,17 @@ DONTTEST=myocamlbuild.ml setup.ml
|
||||||
QTESTABLE=$(filter-out $(DONTTEST), $(wildcard *.ml) $(wildcard *.mli))
|
QTESTABLE=$(filter-out $(DONTTEST), $(wildcard *.ml) $(wildcard *.mli))
|
||||||
|
|
||||||
qtest-clean:
|
qtest-clean:
|
||||||
rm -rf qtest/
|
@rm -rf qtest/
|
||||||
|
|
||||||
qtest: qtest-clean build
|
qtest: qtest-clean build
|
||||||
mkdir -p qtest
|
@mkdir -p qtest
|
||||||
qtest extract -o qtest/qtest_all.ml $(QTESTABLE)
|
@qtest extract -o qtest/qtest_all.ml $(QTESTABLE) 2> /dev/null
|
||||||
ocamlbuild $(OPTIONS) -pkg oUnit,QTest2Lib -I . qtest/qtest_all.native
|
@ocamlbuild $(OPTIONS) -pkg oUnit,QTest2Lib -I . qtest/qtest_all.native
|
||||||
|
@echo
|
||||||
./qtest_all.native
|
./qtest_all.native
|
||||||
|
|
||||||
|
test-all: test qtest
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
otags *.ml *.mli
|
otags *.ml *.mli
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue