mirror of
https://github.com/c-cube/iter.git
synced 2025-12-05 19:00:31 -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
|
||||
|
||||
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
|
||||
ocamlbuild -use-ocamlfind -pkg bench -pkg unix tests/benchs.native \
|
||||
tests/simple_bench.native
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue