# targets are:
#
# all -- rebuild the project (default)
# clean -- remove all objects and executables

SOURCES = util.ml profiles.ml

.PHONY: all
all: a.out

.PHONY: clean
clean:
	rm -f a.out
	for Y in cmo cmi; do \
      rm -f *.$$Y; \
    done

a.out: $(SOURCES)
	ocamlc -o a.out -g str.cma $(SOURCES)
