OCAML=ocamlc
OCAML_FLAGS=
TARGETS=commponents.cmi

all: $(TARGETS)

%.cmi: %.mli
	$(OCAML) -c $(OCAML_FLAGS) -o $@ $<

clean:
	rm -f $(TARGETS)
