mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 03:05:29 -05:00
do not install the toy Sexpr module
This commit is contained in:
parent
f825f71dc6
commit
cc241eeb33
2 changed files with 5 additions and 5 deletions
6
META
6
META
|
|
@ -1,6 +1,6 @@
|
||||||
name="sequence"
|
name="sequence"
|
||||||
version="0.1"
|
version="0.1"
|
||||||
description="Abstract sequences of elements, for conversion into and from data structures, and a tiny S-expression library."
|
description="Abstract sequences of elements, for conversion into and from data structures"
|
||||||
requires=""
|
requires=""
|
||||||
archive(byte) = "sequence.cma sexpr.cma"
|
archive(byte) = "sequence.cma"
|
||||||
archive(native) = "sequence.cmxa sexpr.cmxa"
|
archive(native) = "sequence.cmxa"
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
NAME = sequence
|
NAME = sequence
|
||||||
DOC = sequence.docdir/index.html
|
DOC = sequence.docdir/index.html
|
||||||
TARGETS = sequence.cma sequence.cmxa sequence.cmi sequence.a sexpr.cma sexpr.cmxa sexpr.cmi
|
TARGETS = sequence.cma sequence.cmxa sequence.cmi sequence.a
|
||||||
LIB = $(addprefix _build/, $(TARGETS))
|
LIB = $(addprefix _build/, $(TARGETS))
|
||||||
INSTALL = $(LIB) sequence.mli sexpr.mli
|
INSTALL = $(LIB) sequence.mli
|
||||||
|
|
||||||
all:
|
all:
|
||||||
ocamlbuild tests.native $(TARGETS) $(DOC)
|
ocamlbuild tests.native $(TARGETS) $(DOC)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue