mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 03:05:29 -05:00
Merge branch 'master' of github.com:c-cube/sequence
This commit is contained in:
commit
bf475c1064
1 changed files with 15 additions and 0 deletions
15
Makefile
15
Makefile
|
|
@ -27,6 +27,21 @@ install_file:
|
||||||
|
|
||||||
all: bin doc install_file
|
all: bin doc install_file
|
||||||
|
|
||||||
|
install_file:
|
||||||
|
@rm sequence.install || true
|
||||||
|
@echo 'doc: [' >> sequence.install
|
||||||
|
@for m in $(wildcard sequence.docdir/*.html) ; do \
|
||||||
|
echo ?"$${m}" >> sequence.install; \
|
||||||
|
done
|
||||||
|
@echo ']' >> sequence.install
|
||||||
|
@echo 'man: [' >> sequence.install
|
||||||
|
@for m in $(wildcard man/man3/[A-Z]*.3o) ; do \
|
||||||
|
echo ?"$${m}" >> sequence.install; \
|
||||||
|
done
|
||||||
|
@echo ']' >> sequence.install
|
||||||
|
|
||||||
|
all: bin doc install_file
|
||||||
|
|
||||||
benchs: all
|
benchs: all
|
||||||
ocamlbuild -use-ocamlfind -pkg bench -pkg unix tests/benchs.native \
|
ocamlbuild -use-ocamlfind -pkg bench -pkg unix tests/benchs.native \
|
||||||
tests/simple_bench.native
|
tests/simple_bench.native
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue