BIN_DIR = /usr/local/bin REQUIRES = pxp netclient helm-urimanager pxp netclient PREDICATES = OCAMLOPTIONS = -package "$(REQUIRES)" -predicates "$(PREDICATES)" OCAMLC = ocamlfind ocamlc $(OCAMLOPTIONS) OCAMLOPT = ocamlfind ocamlopt $(OCAMLOPTIONS) OCAMLDEP = ocamldep all: clientHTTP.cmo getter.cmo configuration.cmo opt: clientHTTP.cmx getter.cmx configuration.cmx DEPOBJS = clientHTTP.mli clientHTTP.ml getter.mli getter.ml configuration.ml depend: $(OCAMLDEP) $(DEPOBJS) > .depend .SUFFIXES: .ml .mli .cmo .cmi .cmx .ml.cmo: $(OCAMLC) -c $< .mli.cmi: $(OCAMLC) -c $< .ml.cmx: $(OCAMLOPT) -c $< clean: rm -f *.cm[iox] install: #cp uninstall: #rm -f .PHONY: install uninstall clean include .depend