ocaml-containers/Makefile
2013-03-04 13:25:25 +01:00

16 lines
278 B
Makefile

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