# OASIS_START # DO NOT EDIT (digest: 0ea630b0d23ed49c1bf5c457a3a51866) SETUP = ./setup.exe build: setup.data $(SETUP) $(SETUP) -build $(BUILDFLAGS) doc: setup.data $(SETUP) build $(SETUP) -doc $(DOCFLAGS) test: setup.data $(SETUP) build $(SETUP) -test $(TESTFLAGS) all: $(SETUP) $(SETUP) -all $(ALLFLAGS) install: setup.data $(SETUP) $(SETUP) -install $(INSTALLFLAGS) uninstall: setup.data $(SETUP) $(SETUP) -uninstall $(UNINSTALLFLAGS) reinstall: setup.data $(SETUP) $(SETUP) -reinstall $(REINSTALLFLAGS) clean: $(SETUP) $(SETUP) -clean $(CLEANFLAGS) distclean: $(SETUP) $(SETUP) -distclean $(DISTCLEANFLAGS) $(RM) $(SETUP) setup.data: $(SETUP) $(SETUP) -configure $(CONFIGUREFLAGS) configure: $(SETUP) $(SETUP) -configure $(CONFIGUREFLAGS) setup.exe: setup.ml ocamlfind ocamlopt -o $@ setup.ml || ocamlfind ocamlc -o $@ setup.ml || true $(RM) setup.cmi setup.cmo setup.cmx setup.o .PHONY: build doc test all install uninstall reinstall clean distclean configure # OASIS_STOP