mirror of
https://github.com/c-cube/iter.git
synced 2025-12-05 19:00:31 -05:00
15 lines
314 B
Makefile
15 lines
314 B
Makefile
|
|
NAME = sequence
|
|
DOC = sequence.docdir/index.html
|
|
TARGETS = sequence.cma sequence.cmxa sequence.cmi sequence.a
|
|
LIB = $(addprefix _build/, $(TARGETS))
|
|
INSTALL = $(LIB) sequence.mli
|
|
|
|
all:
|
|
ocamlbuild tests.native $(TARGETS) $(DOC)
|
|
|
|
install: all
|
|
ocamlfind install $(NAME) META $(INSTALL)
|
|
|
|
clean:
|
|
ocamlbuild -clean
|