Makefile 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # OASIS_START
  2. # DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954)
  3. SETUP = ocaml setup.ml
  4. build: setup.data
  5. $(SETUP) -build $(BUILDFLAGS)
  6. doc: setup.data build
  7. $(SETUP) -doc $(DOCFLAGS)
  8. test: setup.data build
  9. $(SETUP) -test $(TESTFLAGS)
  10. all:
  11. $(SETUP) -all $(ALLFLAGS)
  12. install: setup.data
  13. $(SETUP) -install $(INSTALLFLAGS)
  14. uninstall: setup.data
  15. $(SETUP) -uninstall $(UNINSTALLFLAGS)
  16. reinstall: setup.data
  17. $(SETUP) -reinstall $(REINSTALLFLAGS)
  18. clean:
  19. $(SETUP) -clean $(CLEANFLAGS)
  20. distclean:
  21. $(SETUP) -distclean $(DISTCLEANFLAGS)
  22. setup.data:
  23. $(SETUP) -configure $(CONFIGUREFLAGS)
  24. configure:
  25. $(SETUP) -configure $(CONFIGUREFLAGS)
  26. .PHONY: build doc test all install uninstall reinstall clean distclean configure
  27. # OASIS_STOP