ocaml-containers/Makefile
2013-02-27 16:17:42 +01:00

16 lines
294 B
Makefile

INTERFACE_FILES = $(shell find src -name '*.mli')
IMPLEMENTATION_FILES = $(shell find src -name '*.ml')
TARGETS_LIB = src/containers.cmxa src/containers.cma
OPTIONS = -use-ocamlfind -lib sequence
all:
ocamlbuild -use-ocamlfind $(TARGETS_LIB)
clean:
ocamlbuild -clean
.PHONY: all clean