diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..1df3ca28 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ + +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 + + diff --git a/_tags b/_tags new file mode 100644 index 00000000..8bbbe8fe --- /dev/null +++ b/_tags @@ -0,0 +1,3 @@ +: include +<**/*.ml*>: package(sequence) +<**/*.cm*>: package(sequence)