mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
18 lines
353 B
Makefile
18 lines
353 B
Makefile
|
|
INTERFACE_FILES = $(shell find -name '*.mli')
|
|
IMPLEMENTATION_FILES = $(shell find -name '*.ml')
|
|
|
|
TARGETS_LIB = containers.cmxa containers.cma
|
|
OPTIONS = -use-ocamlfind -package sequence
|
|
|
|
all:
|
|
ocamlbuild $(OPTIONS) $(TARGETS_LIB)
|
|
|
|
tests:
|
|
ocamlbuild $(OPTIONS) -package oUnit -I . tests/tests.native
|
|
|
|
clean:
|
|
ocamlbuild -clean
|
|
|
|
.PHONY: all clean tests
|
|
|