X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=172b103ee753d6e324ec9efc21a0a9506896e82f;hp=1db3843169af868a85d5693f627bcced7220a3b1;hb=b858ee135c0814f1781cc16802a7b538d5f047a7;hpb=5c8c3d427bfc727a1eb32fe09edde1b6489f4efd;ds=sidebyside diff --git a/Makefile.in b/Makefile.in index 1db3843..172b103 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,25 +20,12 @@ VERSION = @PACKAGE_VERSION@ INSTALL = @INSTALL@ -pkg_lablgtk2 = @pkg_lablgtk2@ -pkg_curses = @pkg_curses@ -pkg_xml_light = @pkg_xml_light@ +MAKENSIS = @MAKENSIS@ +OCAMLDOC = @OCAMLDOC@ OCAMLDOCFLAGS := -html -sort -SUBDIRS := libvirt examples mlvirsh - -ifeq ($(pkg_lablgtk2),yes) -SUBDIRS += mlvirtmanager -endif - -ifeq ($(pkg_curses),yes) -SUBDIRS += virt-top -endif - -ifeq ($(pkg_xml_light),yes) -SUBDIRS += virt-df -endif +SUBDIRS = @subdirs@ all opt depend install: for d in $(SUBDIRS); do \ @@ -48,12 +35,13 @@ all opt depend install: clean: for d in . $(SUBDIRS); do \ - (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ core); \ + (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ *.dll core); \ done rm -f examples/list_domains rm -f mlvirsh/mlvirsh rm -f mlvirtmanager/mlvirtmanager rm -f virt-top/virt-top + rm -f virt-df/virt-df distclean: clean rm -f config.h config.log config.status configure @@ -70,12 +58,26 @@ distclean: clean # Developer documentation (in html/ subdirectory). +ifneq ($(OCAMLDOC),) doc: rm -rf html mkdir html -cd libvirt; \ - ocamlfind ocamldoc $(OCAMLDOCFLAGS) -d ../html \ + $(OCAMLDOC) $(OCAMLDOCFLAGS) -d ../html \ libvirt.{ml,mli} libvirt_version.{ml,mli} +endif + +# Windows installer (requires NSIS). + +ifneq ($(MAKENSIS),) +wininstaller: $(PACKAGE)-$(VERSION).exe + +$(PACKAGE)-$(VERSION).exe: wininstaller.nsis all opt + "$(MAKENSIS)" \ + //DPACKAGE=$(PACKAGE) //DVERSION=$(VERSION) \ + //DOUTFILE=$@ $< + ls -l $@ +endif # Update configure and rerun.