mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2026-01-24 10:06:40 -05:00
16 lines
294 B
Makefile
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
|
|
|
|
|