Repository creation

This commit is contained in:
Matthieu Dubuget
2016-12-03 13:55:44 +01:00
commit 9ec88ea823
7 changed files with 298 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
.PHONY: install uninstall
install: META googleApps.mli _build/googleApps.cmo _build/googleApps.cmi _build/googleApps.cma
ocamlfind install ocaml-google-apps $^
uninstall:
ocamlfind remove ocaml-google-apps
_build/googleApps.cmi: googleApps.mli
ocamlbuild googleApps.cmi
_build/googleApps.cmo: googleApps.mli googleApps.ml
ocamlbuild googleApps.cmo
_build/googleApps.cma: googleApps.mli googleApps.ml
ocamlbuild googleApps.cma