aboutsummaryrefslogtreecommitdiffstats
path: root/stubdom/caml/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'stubdom/caml/Makefile')
-rw-r--r--stubdom/caml/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/stubdom/caml/Makefile b/stubdom/caml/Makefile
new file mode 100644
index 0000000000..69595a8f99
--- /dev/null
+++ b/stubdom/caml/Makefile
@@ -0,0 +1,18 @@
+XEN_ROOT = ../..
+
+include $(XEN_ROOT)/Config.mk
+
+OCAMLFIND=ocamlfind
+OCAMLOPT=ocamlopt
+
+OBJS := hello.cmx
+LIBS :=
+
+%.cmx: %.ml
+ $(OCAMLFIND) $(OCAMLOPT) -c $< -o $@
+
+caml.o: $(OBJS)
+ $(OCAMLFIND) $(OCAMLOPT) $(LIBS) $^ -output-obj -o $@
+
+clean:
+ rm -f *.o *.cmx *.cmi