do not install the toy Sexpr module

This commit is contained in:
Simon Cruanes 2013-02-10 19:53:39 +01:00
parent f825f71dc6
commit cc241eeb33
2 changed files with 5 additions and 5 deletions

6
META
View file

@ -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"

View file

@ -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)