From cc241eeb335134f5452d231a904c3aeb1a4e7e9d Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sun, 10 Feb 2013 19:53:39 +0100 Subject: [PATCH] do not install the toy Sexpr module --- META | 6 +++--- Makefile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/META b/META index 7cea57e..31a82d1 100644 --- a/META +++ b/META @@ -1,6 +1,6 @@ name="sequence" 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="" -archive(byte) = "sequence.cma sexpr.cma" -archive(native) = "sequence.cmxa sexpr.cmxa" +archive(byte) = "sequence.cma" +archive(native) = "sequence.cmxa" diff --git a/Makefile b/Makefile index 8811073..4ec85d7 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ NAME = sequence 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)) -INSTALL = $(LIB) sequence.mli sexpr.mli +INSTALL = $(LIB) sequence.mli all: ocamlbuild tests.native $(TARGETS) $(DOC)