ocaml-containers/Makefile
Simon Cruanes bf777e3d28 tags
2013-03-14 14:42:53 +01:00

24 lines
450 B
Makefile

INTERFACE_FILES = $(shell find -name '*.mli')
IMPLEMENTATION_FILES = $(shell find -name '*.ml')
TARGETS_LIB = containers.cmxa containers.cma
OPTIONS = -use-ocamlfind
all:
ocamlbuild $(OPTIONS) $(TARGETS_LIB)
tests:
ocamlbuild $(OPTIONS) -package oUnit -I . tests/tests.native
bench:
ocamlbuild $(OPTIONS) -package bench -package unix -I . tests/benchs.native
clean:
ocamlbuild -clean
tags:
otags *.ml *.mli
.PHONY: all clean tests tags