Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
o-marshmallow committed Jun 30, 2016
1 parent 311e64e commit fc9d909
Show file tree
Hide file tree
Showing 3 changed files with 603 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
NAME=geoloc
PACKAGES=-package js_of_ocaml,gen_js_api,ocaml-googlemap,js_of_ocaml.ppx
SYNTAX= -package lwt.ppx

all:
ocamlfind ocamlc -c $(PACKAGES) $(SYNTAX) $(NAME).mli
ocamlfind ocamlc -c $(PACKAGES) $(SYNTAX) $(NAME).ml
ocamlfind ocamlc -a -no-check-prims -o $(NAME).cma $(PACKAGES) $(NAME).cmo

install: all
ocamlfind install geoloc META $(NAME).cma $(NAME).cmi

clean:
rm *.cmo *.cmi
Loading

0 comments on commit fc9d909

Please sign in to comment.