X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ocaml%2Fexamples%2FMakefile.am;h=ab058b137942d17aa4098e3ca8e94c81950c20be;hb=c477e2fb78347728aaacbbc89666dcda1481a4b9;hp=abe6cdf37bd5e7fbaa72aa3d67c7d5fa115a75c6;hpb=41b959fd9b057354f642d84398b875d02b88b864;p=libguestfs.git diff --git a/ocaml/examples/Makefile.am b/ocaml/examples/Makefile.am index abe6cdf..ab058b1 100644 --- a/ocaml/examples/Makefile.am +++ b/ocaml/examples/Makefile.am @@ -1,10 +1,40 @@ -EXTRA_DIST = LICENSE README lvs.ml +EXTRA_DIST = \ + LICENSE README \ + lvs.ml \ + viewer.ml xmllight_loader.ml xmllight_loader.mli \ + Throbber.png Throbber.gif + +CLEANFILES = throbber.ml *.cmi *.cmo *.cmx *.o lvs if HAVE_OCAML +noinst_SCRIPTS = lvs + +OCAMLFINDFLAGS = -ccopt '-L $(top_builddir)/src/.libs' + lvs: lvs.ml - $(OCAMLFIND) ocamlopt -I .. mlguestfs.cmxa $< -o $@ + $(OCAMLFIND) ocamlopt $(OCAMLFINDFLAGS) \ + -warn-error A -I .. mlguestfs.cmxa $< -o $@ + +if BUILD_OCAML_VIEWER + +noinst_SCRIPTS += viewer + +viewer: throbber.ml xmllight_loader.mli xmllight_loader.ml viewer.ml + ocamlducefind opt $(OCAMLFINDFLAGS) \ + -warn-error A \ + -thread \ + -package libvirt,lablgtk2,extlib,xml-light,ocamlduce,threads -I .. \ + -predicates init,threads \ + -linkpkg mlguestfs.cmxa gtkThread.cmx \ + $^ -o $@ + +throbber.ml: Throbber.png Throbber.gif + gdk_pixbuf_mlsource --build-list \ + static Throbber.png \ + animation Throbber.gif \ + > $@-t && mv $@-t $@ -CLEANFILES = *.cmi *.cmo *.cmx *.o lvs +endif -endif \ No newline at end of file +endif